Skip to content

Commit

Permalink
fix: strip second php-fpm config
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed May 16, 2023
1 parent 8cca72b commit 6490521
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion 8.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ COPY --from=caddy --link /usr/bin/caddy /usr/bin/caddy

RUN apk add --no-cache icu-data-full curl jq && \
install-php-extensions bcmath gd intl mysqli pdo_mysql sockets bz2 gmp soap zip ffi redis opcache apcu amqp && \
mkdir -p /var/www/html
mkdir -p /var/www/html && \
rm /usr/local/etc/php-fpm.d/zz-docker.conf

USER www-data

Expand Down
3 changes: 2 additions & 1 deletion 8.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ COPY --from=caddy --link /usr/bin/caddy /usr/bin/caddy

RUN apk add --no-cache icu-data-full curl jq && \
install-php-extensions bcmath gd intl mysqli pdo_mysql sockets bz2 gmp soap zip ffi redis opcache apcu amqp && \
mkdir -p /var/www/html
mkdir -p /var/www/html && \
rm /usr/local/etc/php-fpm.d/zz-docker.conf

USER www-data

Expand Down
3 changes: 2 additions & 1 deletion 8.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ COPY --from=caddy --link /usr/bin/caddy /usr/bin/caddy

RUN apk add --no-cache icu-data-full curl jq && \
install-php-extensions bcmath gd intl mysqli pdo_mysql sockets bz2 gmp soap zip ffi redis opcache apcu amqp && \
mkdir -p /var/www/html
mkdir -p /var/www/html && \
rm /usr/local/etc/php-fpm.d/zz-docker.conf

USER www-data

Expand Down
3 changes: 2 additions & 1 deletion Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ COPY --from=caddy --link /usr/bin/caddy /usr/bin/caddy

RUN apk add --no-cache icu-data-full curl jq && \
install-php-extensions bcmath gd intl mysqli pdo_mysql sockets bz2 gmp soap zip ffi redis opcache apcu amqp && \
mkdir -p /var/www/html
mkdir -p /var/www/html && \
rm /usr/local/etc/php-fpm.d/zz-docker.conf

USER www-data

Expand Down

0 comments on commit 6490521

Please sign in to comment.