Skip to content

Commit 884e7e3

Browse files
committed
Updated PHP version in Docker files
1 parent 86ef3d2 commit 884e7e3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1.7-labs
2-
FROM php:8.4.8-fpm-bookworm
2+
FROM php:8.4.10-fpm-bookworm
33

44
ENV APP_ENV prod
55
ENV APP_DEBUG 0
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
&& rm -rf /var/lib/apt/lists/*
2020

2121
# Copy the install-php-extensions (Easily install PHP extension in official PHP Docker containers)
22-
COPY --from=mlocati/php-extension-installer:2.8.2 /usr/bin/install-php-extensions /usr/local/bin/
22+
COPY --from=mlocati/php-extension-installer:2.8.4 /usr/bin/install-php-extensions /usr/local/bin/
2323

2424
# Install and enable all necessary PHP extensions
2525
RUN install-php-extensions \

Dockerfile_dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.4.8-fpm-bookworm
1+
FROM php:8.4.10-fpm-bookworm
22

33
# Let's use bash as a default shell with login each time
44
SHELL ["/bin/bash", "--login", "-c"]
@@ -58,7 +58,7 @@ ENV LANGUAGE en_US:en
5858
ENV LC_ALL en_US.UTF-8
5959

6060
# Copy the install-php-extensions (Easily install PHP extension in official PHP Docker containers)
61-
COPY --from=mlocati/php-extension-installer:2.8.2 /usr/bin/install-php-extensions /usr/local/bin/
61+
COPY --from=mlocati/php-extension-installer:2.8.4 /usr/bin/install-php-extensions /usr/local/bin/
6262

6363
# Enable all necessary PHP packages
6464
RUN install-php-extensions \

0 commit comments

Comments
 (0)