fix docker build

This commit is contained in:
Robin Appelman 2018-06-06 12:59:03 +02:00
commit 1451d8658c

View file

@ -3,7 +3,7 @@ FROM php:7.1-alpine
COPY . /app
RUN apk add --no-cache wget \
&& wget https://getcomposer.org/composer.phar \
&& php composer.phar -d=/app install --no-dev --no-interaction \
&& php composer.phar --working-dir=/app install --no-dev --no-interaction \
&& rm composer.phar \
&& apk del wget