We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83c1c45 commit b80ab8bCopy full SHA for b80ab8b
Dockerfile
@@ -2,7 +2,7 @@ FROM php:7-fpm-alpine
2
3
RUN apk add --no-cache --virtual .composer-rundeps git subversion openssh-client mercurial tini bash patch make zip unzip coreutils \
4
&& apk add --no-cache --virtual .build-deps zlib-dev libzip-dev \
5
- && docker-php-ext-configure zip --with-libzip \
+ && docker-php-ext-configure zip --with-libzip=/usr/include \
6
&& docker-php-ext-install -j$(getconf _NPROCESSORS_ONLN) zip opcache \
7
&& docker-php-ext-install pdo_mysql \
8
&& runDeps="$( \
@@ -39,4 +39,4 @@ RUN curl --silent --fail --location --retry 3 --output /tmp/installer.php --url
39
40
COPY . .
41
42
-RUN composer install
+RUN composer install
0 commit comments