File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1.7-labs
2
- FROM php:8.4.10 -fpm-bookworm
2
+ FROM php:8.4.11 -fpm-bookworm
3
3
4
4
ENV APP_ENV prod
5
5
ENV APP_DEBUG 0
@@ -19,7 +19,7 @@ RUN apt-get update \
19
19
&& rm -rf /var/lib/apt/lists/*
20
20
21
21
# 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/
23
23
24
24
# Install and enable all necessary PHP extensions
25
25
RUN install-php-extensions \
@@ -40,7 +40,7 @@ RUN apt-get update \
40
40
&& rm -rf /var/lib/apt/lists/*
41
41
42
42
# 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
44
44
45
45
# Enable Composer autocompletion
46
46
RUN 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
2
2
3
3
# Let's use bash as a default shell with login each time
4
4
SHELL ["/bin/bash", "--login", "-c"]
@@ -10,7 +10,7 @@ ARG HOST_GID
10
10
# Declare constants
11
11
ENV PATH "$PATH:/home/dev/.composer/vendor/bin:/app/vendor/bin"
12
12
ENV NVM_VERSION v0.40.3
13
- ENV NODE_VERSION 24.3 .0
13
+ ENV NODE_VERSION 24.5 .0
14
14
15
15
# Update package list and install necessary libraries
16
16
RUN apt-get update \
@@ -58,7 +58,7 @@ ENV LANGUAGE en_US:en
58
58
ENV LC_ALL en_US.UTF-8
59
59
60
60
# 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/
62
62
63
63
# Enable all necessary PHP packages
64
64
RUN install-php-extensions \
@@ -80,7 +80,7 @@ RUN apt-get update \
80
80
&& rm -rf /var/lib/apt/lists/*
81
81
82
82
# 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
84
84
85
85
# Enable Composer autocompletion
86
86
RUN composer completion bash > /etc/bash_completion.d/composer
You can’t perform that action at this time.
0 commit comments