Skip to content

Commit

Permalink
Update default module args for docker files so that completes on GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
gsteel committed Sep 15, 2022
1 parent ffd0a52 commit e7d7841
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/cron.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM php:8.1-cli-alpine

ARG LOCAL_MODULES="redis intl opcache"
ARG LOCAL_MODULES="bcmath ctype curl intl json libxml mbstring opcache redis xmlreader"

ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.1.12/supercronic-linux-amd64 \
SUPERCRONIC=supercronic-linux-amd64 \
Expand Down
2 changes: 1 addition & 1 deletion docker/node.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
FROM php:8.1-cli-alpine

ARG LOCAL_MODULES="redis intl opcache"
ARG LOCAL_MODULES="bcmath ctype curl intl json libxml mbstring opcache redis xmlreader"

#
# PHP Extensions
Expand Down
2 changes: 1 addition & 1 deletion docker/php-dev.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM php:8.1-fpm-alpine

ARG LOCAL_MODULES="redis intl opcache pcov"
ARG LOCAL_MODULES="bcmath ctype curl intl json libxml mbstring opcache redis xmlreader pcov"

# Standard Extensions
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
Expand Down
2 changes: 1 addition & 1 deletion docker/php.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM php:8.1-fpm-alpine

ARG LOCAL_MODULES="redis intl opcache"
ARG LOCAL_MODULES="bcmath ctype curl intl json libxml mbstring opcache redis xmlreader"

# Standard Extensions
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
Expand Down

0 comments on commit e7d7841

Please sign in to comment.