Skip to content

Commit bbfd7ad

Browse files
committed
Revert using PHP 8.5 in Dockerfile
1 parent f7ce166 commit bbfd7ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM phpdockerio/php:8.5-fpm
1+
FROM phpdockerio/php:8.4-fpm
22
WORKDIR /application
33

44
# Install selected extensions and other stuff
55
RUN apt-get update \
66
&& apt-get -y --no-install-recommends install \
7-
php8.5-sqlite \
8-
php8.5-intl \
9-
php8.5-gd \
7+
php8.4-sqlite \
8+
php8.4-intl \
9+
php8.4-gd \
1010
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/log/* /var/cache/* /usr/share/doc/*
1111

1212
COPY app/bin/console ./bin/

0 commit comments

Comments
 (0)