1- FROM php:8.4.5 -fpm
1+ FROM php:8.4.6 -fpm-bullseye
22
33# Let's use bash as a default shell with login each time
44SHELL ["/bin/bash", "--login", "-c"]
@@ -10,7 +10,7 @@ ARG HOST_GID
1010# Declare constants
1111ENV PATH "$PATH:/home/dev/.composer/vendor/bin:/app/vendor/bin"
1212ENV NVM_VERSION v0.40.1
13- ENV NODE_VERSION 23.10 .0
13+ ENV NODE_VERSION 23.11 .0
1414
1515# Update package list and install necessary libraries
1616RUN apt-get update \
@@ -56,7 +56,7 @@ ENV LANGUAGE en_US:en
5656ENV LC_ALL en_US.UTF-8
5757
5858# Copy the install-php-extensions (Easily install PHP extension in official PHP Docker containers)
59- COPY --from=mlocati/php-extension-installer:2.7.28 /usr/bin/install-php-extensions /usr/local/bin/
59+ COPY --from=mlocati/php-extension-installer:2.7.31 /usr/bin/install-php-extensions /usr/local/bin/
6060
6161# Enable all necessary PHP packages
6262RUN install-php-extensions \
@@ -74,11 +74,11 @@ RUN apt-get update \
7474 && apt-get install -y \
7575 debsecan \
7676 && apt-get install --no-install-recommends -y \
77- $(debsecan --suite bookworm --format packages --only-fixed) \
77+ $(debsecan --suite bullseye --format packages --only-fixed) \
7878 && rm -rf /var/lib/apt/lists/*
7979
8080# Copy the Composer PHAR from the Composer image into the PHP image
81- COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/composer
81+ COPY --from=composer:2.8.8 /usr/bin/composer /usr/bin/composer
8282
8383# Enable Composer autocompletion
8484RUN composer completion bash > /etc/bash_completion.d/composer
0 commit comments