Skip to content

Commit abfc2a1

Browse files
committed
Remove quotes from install-php-extensions. Fixes #555
1 parent 765260a commit abfc2a1

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/variations/cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ RUN docker-php-serversideup-dep-install-alpine "${DEPENDENCY_PACKAGES_ALPINE}" &
7777
chown -R www-data:www-data "${COMPOSER_HOME}" && \
7878
\
7979
# Install default PHP extensions
80-
install-php-extensions "${DEPENDENCY_PHP_EXTENSIONS}"
80+
install-php-extensions ${DEPENDENCY_PHP_EXTENSIONS}
8181

8282
# install composer from Composer's official Docker image
8383
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer

src/variations/fpm-apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ RUN docker-php-serversideup-dep-install-debian "${DEPENDENCY_PACKAGES_DEBIAN}"
128128
chown -R www-data:www-data "${COMPOSER_HOME}" && \
129129
\
130130
# Install default PHP extensions
131-
install-php-extensions "${DEPENDENCY_PHP_EXTENSIONS}" && \
131+
install-php-extensions ${DEPENDENCY_PHP_EXTENSIONS} && \
132132
\
133133
# redirect logs to STDOUT and STERR
134134
ln -sf /dev/stdout /var/log/apache2/access.log && \

src/variations/fpm-nginx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ RUN docker-php-serversideup-dep-install-alpine "${DEPENDENCY_PACKAGES_ALPINE} ng
214214
chown -R www-data:www-data /var/cache/nginx/ && \
215215
\
216216
# Install default PHP extensions
217-
install-php-extensions "${DEPENDENCY_PHP_EXTENSIONS}" && \
217+
install-php-extensions ${DEPENDENCY_PHP_EXTENSIONS} && \
218218
\
219219
# clear all php provided fpm configurations
220220
rm -rf /usr/local/etc/php-fpm.d/*.conf && \

src/variations/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ RUN rm -rf /usr/local/etc/php-fpm.d/*.conf && \
9292
chmod +x /usr/local/bin/php-fpm-healthcheck && \
9393
\
9494
# Install default PHP extensions
95-
install-php-extensions "${DEPENDENCY_PHP_EXTENSIONS}"
95+
install-php-extensions ${DEPENDENCY_PHP_EXTENSIONS}
9696

9797
# copy our fpm configurations
9898
COPY src/php-fpm.d/ /

src/variations/frankenphp/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ RUN \
209209
# Install PHP Extension installer
210210
docker-php-serversideup-install-php-ext-installer; \
211211
# Install default PHP extensions
212-
install-php-extensions "${DEPENDENCY_PHP_EXTENSIONS}"; \
212+
install-php-extensions ${DEPENDENCY_PHP_EXTENSIONS}; \
213213
# Ensure permissions are set for www-data
214214
docker-php-serversideup-set-file-permissions --owner www-data:www-data --service frankenphp
215215

0 commit comments

Comments
 (0)