File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM php:8.1-fpm-buster
1+ FROM php:8.1-fpm-bullseye
22
33# install the PHP extensions we need
44RUN 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 { \
9999RUN 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.
105105RUN 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
109109ENV 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
113113RUN composer --version
114-
You can’t perform that action at this time.
0 commit comments