Skip to content

Commit 496993e

Browse files
committed
Update Dockerfile with new OS
1 parent e3e3eca commit 496993e

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.1-fpm-buster
1+
FROM php:8.1-fpm-bullseye
22

33
# install the PHP extensions we need
44
RUN set -eux; \
@@ -34,7 +34,7 @@ RUN set -eux; \
3434
zip \
3535
; \
3636
\
37-
pecl install redis-5.1.1; \
37+
pecl install redis-5.3.7; \
3838
docker-php-ext-enable redis; \
3939
\
4040
pecl install apcu; \
@@ -99,7 +99,7 @@ RUN { \
9999
RUN sed -i s'/access.log = \/proc\/self\/fd\/2/access.log = \/proc\/self\/fd\/1/' /usr/local/etc/php-fpm.d/docker.conf
100100

101101
# Install drush launcher to use the drush version of the project.
102-
ARG DRUSH_LAUNCHER_VERSION=0.6.0
102+
ARG DRUSH_LAUNCHER_VERSION=0.10.1
103103

104104
# Install drush launcher with the phar file.
105105
RUN curl -fsSL -o /usr/local/bin/drush "https://github.com/drush-ops/drush-launcher/releases/download/$DRUSH_LAUNCHER_VERSION/drush.phar" && \
@@ -109,6 +109,5 @@ RUN curl -fsSL -o /usr/local/bin/drush "https://github.com/drush-ops/drush-launc
109109
ENV PATH="/var/www/html/web/vendor/bin:${PATH}"
110110

111111
# Install Composer
112-
COPY --from=composer:2.3.10 /usr/bin/composer /usr/bin/composer
112+
COPY --from=composer:2.4.4 /usr/bin/composer /usr/bin/composer
113113
RUN composer --version
114-

0 commit comments

Comments
 (0)