Change Docker's base image to use alpine. Fixes #5

This commit is contained in:
Stéphane Goetz 2017-10-18 21:34:54 +02:00
parent a1fc50ad70
commit ec9344f558
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
FROM php:7
FROM php:7-alpine
RUN apt-get update && apt-get install -y unzip && rm -rf /var/lib/apt/lists/*
RUN apk info && apk add --no-cache unzip
RUN mkdir /daux && mkdir /build