File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1.7-labs
2- FROM php:8.4.10 -fpm-bookworm
2+ FROM php:8.4.11 -fpm-bookworm
33
44ENV APP_ENV prod
55ENV 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.4 /usr/bin/install-php-extensions /usr/local/bin/
22+ COPY --from=mlocati/php-extension-installer:2.8.5 /usr/bin/install-php-extensions /usr/local/bin/
2323
2424# Install and enable all necessary PHP extensions
2525RUN install-php-extensions \
@@ -40,7 +40,7 @@ RUN apt-get update \
4040 && rm -rf /var/lib/apt/lists/*
4141
4242# Copy the Composer PHAR from the Composer image into the PHP image
43- COPY --from=composer:2.8.9 /usr/bin/composer /usr/bin/composer
43+ COPY --from=composer:2.8.10 /usr/bin/composer /usr/bin/composer
4444
4545# Enable Composer autocompletion
4646RUN composer completion bash > /etc/bash_completion.d/composer
Original file line number Diff line number Diff line change 1- FROM php:8.4.10 -fpm-bookworm
1+ FROM php:8.4.11 -fpm-bookworm
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.3
13- ENV NODE_VERSION 24.3 .0
13+ ENV NODE_VERSION 24.5 .0
1414
1515# Update package list and install necessary libraries
1616RUN apt-get update \
@@ -58,7 +58,7 @@ ENV LANGUAGE en_US:en
5858ENV 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.4 /usr/bin/install-php-extensions /usr/local/bin/
61+ COPY --from=mlocati/php-extension-installer:2.8.5 /usr/bin/install-php-extensions /usr/local/bin/
6262
6363# Enable all necessary PHP packages
6464RUN install-php-extensions \
@@ -80,7 +80,7 @@ RUN apt-get update \
8080 && rm -rf /var/lib/apt/lists/*
8181
8282# Copy the Composer PHAR from the Composer image into the PHP image
83- COPY --from=composer:2.8.9 /usr/bin/composer /usr/bin/composer
83+ COPY --from=composer:2.8.10 /usr/bin/composer /usr/bin/composer
8484
8585# Enable Composer autocompletion
8686RUN composer completion bash > /etc/bash_completion.d/composer
You can’t perform that action at this time.
0 commit comments