From 79729f04756f5dfb33511d1cc56f31a7a613a86f Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 20 Aug 2024 01:27:06 -0400 Subject: [PATCH] docke upadte --- docker/apache/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 &&\