Skip to content

Commit 4e6debf

Browse files
committed
Build Docker image with PHP 8.5
1 parent 8af5951 commit 4e6debf

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,14 +1,14 @@
1-
FROM phpdockerio/php:8.4-fpm
1+
FROM phpdockerio/php:8.5-fpm
22
WORKDIR /application
33

44
ARG GIT_COMMIT_ID=""
55

66
# Install selected extensions and other stuff
77
RUN apt-get update \
88
&& apt-get -y --no-install-recommends install \
9-
php8.4-sqlite \
10-
php8.4-intl \
11-
php8.4-gd \
9+
php8.5-sqlite \
10+
php8.5-intl \
11+
php8.5-gd \
1212
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/log/* /var/cache/* /usr/share/doc/*
1313

1414
COPY app/bin/console ./bin/

0 commit comments

Comments
 (0)