FROM php:8.2-apache

RUN apt-get update && \
  apt-get install -y libonig-dev

RUN docker-php-ext-install mysqli pdo_mysql mbstring

# Enable Apache headers module
RUN a2enmod headers

# Add custom Apache configuration for UTF-8 charset
COPY apache-charset.conf /etc/apache2/conf-available/charset.conf
RUN a2enconf charset
