Compare commits

...

2 Commits

Author SHA1 Message Date
af089cd6a7
[PHP] Bump to 7.4.33 + install intl php ext
PHP extension required to use new function
(see d0ee343b45)
2023-08-09 12:34:53 +02:00
3b3db4396c
[GNOUSWEB] Set web git repo safe for system 2023-08-09 12:21:56 +02:00
3 changed files with 8 additions and 3 deletions

View File

@ -1,9 +1,14 @@
from php:7.4.32-apache
from php:7.4.33-apache
RUN apt-get update && apt-get install -y \
git \
libicu-dev\
&& docker-php-ext-configure intl \
&& docker-php-ext-install intl \
&& rm -rf /var/lib/apt/lists/*
RUN printf "[safe]\n\tdirectory = /var/www\n" > /etc/gitconfig
RUN a2enmod remoteip rewrite \
&& echo "RemoteIPHeader X-Forwarded-For" > /etc/apache2/conf-available/remoteip.conf \
&& a2enconf remoteip \

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
apache:
build: .
image: my_apache:7.4.32
image: my_apache:7.4.33
container_name: apache
networks:
- proxy

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
apache-test:
build: ..
image: my_apache:7.4.32
image: my_apache:7.4.33
container_name: apache-test
networks:
- proxy