From ec9344f558d8e06c6c5db4ca0cdad56a8a443061 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Goetz?= Date: Wed, 18 Oct 2017 21:34:54 +0200 Subject: [PATCH] Change Docker's base image to use alpine. Fixes #5 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e31517..692f5f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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