Skip to content

Commit f9a956b

Browse files
authored
Merge pull request #71 from fontebasso/php8
fix syntax error php-ext-configure
2 parents d9b102e + 9bfde47 commit f9a956b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Dockerfile

+5-4
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@ RUN set -ex; \
3737
postgresql-dev \
3838
runit; \
3939
apk add --no-cache --virtual build-dependencies build-base gcc wget autoconf linux-headers; \
40-
docker-php-ext-configure gd pcntl \
41-
--enable-pcntl \
42-
--with-freetype \
43-
--with-jpeg; \
40+
docker-php-ext-configure gd \
41+
--with-freetype \
42+
--with-jpeg; \
43+
docker-php-ext-configure pcntl \
44+
--enable-pcntl; \
4445
docker-php-ext-install \
4546
bcmath \
4647
bz2 \

0 commit comments

Comments
 (0)