Skip to content

Commit

Permalink
fix(Dockerfile): move ARG PHP_EXTENSIONS into the right stage
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmirloup committed Mar 8, 2024
1 parent aeff473 commit 4793965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG PHP_VERSION
ARG PHP_EXTENSIONS

FROM mlocati/php-extension-installer:2 as extension-installer
FROM php:${PHP_VERSION}-fpm as base
FROM base
ARG PHP_EXTENSIONS

WORKDIR /usr/local/etc/php
COPY --link symfony.ini ./conf.d/
Expand Down

0 comments on commit 4793965

Please sign in to comment.