Skip to content

Commit

Permalink
bump and downgrade phpredis
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi committed Aug 6, 2024
1 parent bddfed5 commit 09c665e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ARG PHP_VERSION=8.3.6
ARG COMPOSER_VERSION=2.7.6
ARG SYMFONY_VERSION=5.8.19
ARG PHP_VERSION=8.3.10
ARG COMPOSER_VERSION=2.7.7
ARG SYMFONY_VERSION=5.10.2
ARG NODE_MAJOR=20
ARG DEFAULT_PHP_EXTENSIONS="bcmath exif gd intl opcache pcntl pdo_pgsql pdo_mysql sockets sysvmsg sysvsem sysvshm zip redis amqp"
ARG DEFAULT_PHP_EXTENSIONS="bcmath exif gd intl opcache pcntl pdo_pgsql pdo_mysql sockets sysvmsg sysvsem sysvshm zip amqp"
ARG PHP_EXTENSIONS
ARG APT_PACKAGES="acl cron sudo procps gettext tini mkcert p7zip unzip git nodejs ca-certificates curl gnupg"
ARG DEBIAN_CODENAME=bullseye
Expand Down Expand Up @@ -52,6 +52,7 @@ RUN set -eux ; \
curl -sSLf -o '/usr/bin/install-php-extensions' $INSTALL_PHP_EXTENSION_URL ; \
chmod +x '/usr/bin/install-php-extensions' ; \
install-php-extensions $PHP_EXTENSIONS ; \
install-php-extensions redis-^5 ; \
true

# install composer
Expand Down Expand Up @@ -120,6 +121,7 @@ RUN set -eux ; \
curl -sSLf -o '/usr/bin/install-php-extensions' $INSTALL_PHP_EXTENSION_URL ; \
chmod +x '/usr/bin/install-php-extensions' ; \
install-php-extensions $PHP_EXTENSIONS ; \
install-php-extensions redis-^5 ; \
true

# install composer
Expand Down

0 comments on commit 09c665e

Please sign in to comment.