diff --git a/docker/apache/Dockerfile b/docker/apache/Dockerfile index c382760..50a2fe7 100644 --- a/docker/apache/Dockerfile +++ b/docker/apache/Dockerfile @@ -4,6 +4,9 @@ FROM php:8.1-apache RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf #RUN apt-get update +# mod_rewrite +RUN a2enmod rewrite + RUN apt-get update && \ apt-get install --yes --force-yes \ cron g++ gettext libicu-dev openssl \ @@ -16,8 +19,8 @@ RUN apt-get update && \ # PHP Configuration -# docker-php-ext-install dba gettext iconv intl tidy xsl zip &&\ -RUN docker-php-ext-install mysqli pgsql pdo pdo_mysql pdo_pgsql &&\ +RUN docker-php-ext-install bcmath bz2 calendar dba exif gettext iconv intl soap tidy xsl zip&&\ + docker-php-ext-install mysqli pgsql pdo pdo_mysql pdo_pgsql &&\ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp &&\ docker-php-ext-install gd &&\ docker-php-ext-configure imap --with-kerberos --with-imap-ssl &&\