Skip to content

Commit e89e97b

Browse files
authored
Merge pull request #2803 from tarlepp/chore(env)/php-update
Chore(env) - Updated PHP, Composer and php-extension-installer to latest version
2 parents e70a667 + 4260beb commit e89e97b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.idea/php.xml

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/symfony-flex-backend.iml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.3.7-fpm
1+
FROM php:8.3.8-fpm
22

33
ENV APP_ENV prod
44
ENV 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.14 /usr/bin/install-php-extensions /usr/local/bin/
21+
COPY --from=mlocati/php-extension-installer:2.2.16 /usr/bin/install-php-extensions /usr/local/bin/
2222

2323
# Install and enable all necessary PHP extensions
2424
RUN 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.6 /usr/bin/composer /usr/bin/composer
34+
COPY --from=composer:2.7.7 /usr/bin/composer /usr/bin/composer
3535

3636
# Enable Composer autocompletion
3737
RUN composer completion bash > /etc/bash_completion.d/composer

Dockerfile_dev

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.3.7-fpm
1+
FROM php:8.3.8-fpm
22

33
# Let's use bash as a default shell with login each time
44
SHELL ["/bin/bash", "--login", "-c"]
@@ -10,7 +10,7 @@ ARG HOST_GID
1010
# Declare constants
1111
ENV PATH "$PATH:/home/dev/.composer/vendor/bin:/app/vendor/bin"
1212
ENV NVM_VERSION v0.39.7
13-
ENV NODE_VERSION 22.2.0
13+
ENV NODE_VERSION 22.3.0
1414

1515
# Update package list and install necessary libraries
1616
RUN apt-get update \
@@ -56,7 +56,7 @@ ENV LANGUAGE en_US:en
5656
ENV 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.14 /usr/bin/install-php-extensions /usr/local/bin/
59+
COPY --from=mlocati/php-extension-installer:2.2.16 /usr/bin/install-php-extensions /usr/local/bin/
6060

6161
# Enable all necessary PHP packages
6262
RUN 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.6 /usr/bin/composer /usr/bin/composer
73+
COPY --from=composer:2.7.7 /usr/bin/composer /usr/bin/composer
7474

7575
# Enable Composer autocompletion
7676
RUN composer completion bash > /etc/bash_completion.d/composer

0 commit comments

Comments
 (0)