File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1- FROM php:8.3.6 -fpm
1+ FROM php:8.3.7 -fpm
22
33ENV APP_ENV prod
44ENV APP_DEBUG 0
@@ -18,7 +18,7 @@ RUN apt-get update \
1818 && rm -rf /var/lib/apt/lists/*
1919
2020# Copy the install-php-extensions (Easily install PHP extension in official PHP Docker containers)
21- COPY --from=mlocati/php-extension-installer:2.2.9 /usr/bin/install-php-extensions /usr/local/bin/
21+ COPY --from=mlocati/php-extension-installer:2.2.14 /usr/bin/install-php-extensions /usr/local/bin/
2222
2323# Install and enable all necessary PHP extensions
2424RUN install-php-extensions \
@@ -31,7 +31,7 @@ RUN install-php-extensions \
3131 zip
3232
3333# Copy the Composer PHAR from the Composer image into the PHP image
34- COPY --from=composer:2.7.2 /usr/bin/composer /usr/bin/composer
34+ COPY --from=composer:2.7.6 /usr/bin/composer /usr/bin/composer
3535
3636# Enable Composer autocompletion
3737RUN composer completion bash > /etc/bash_completion.d/composer
Original file line number Diff line number Diff line change 1- FROM php:8.3.6 -fpm
1+ FROM php:8.3.7 -fpm
22
33# Let's use bash as a default shell with login each time
44SHELL ["/bin/bash", "--login", "-c"]
@@ -9,8 +9,8 @@ ARG HOST_GID
99
1010# Declare constants
1111ENV PATH "$PATH:/home/dev/.composer/vendor/bin:/app/vendor/bin"
12- ENV NVM_VERSION v0.39.5
13- ENV NODE_VERSION 21.7.3
12+ ENV NVM_VERSION v0.39.7
13+ ENV NODE_VERSION 22.2.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.2.9 /usr/bin/install-php-extensions /usr/local/bin/
59+ COPY --from=mlocati/php-extension-installer:2.2.14 /usr/bin/install-php-extensions /usr/local/bin/
6060
6161# Enable all necessary PHP packages
6262RUN install-php-extensions \
@@ -70,7 +70,7 @@ RUN install-php-extensions \
7070 zip
7171
7272# Copy the Composer PHAR from the Composer image into the PHP image
73- COPY --from=composer:2.7.2 /usr/bin/composer /usr/bin/composer
73+ COPY --from=composer:2.7.6 /usr/bin/composer /usr/bin/composer
7474
7575# Enable Composer autocompletion
7676RUN composer completion bash > /etc/bash_completion.d/composer
You can’t perform that action at this time.
0 commit comments