From 26f38e2ede419e084b11c04a55dbfedf90b8114b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Dugat?= Date: Tue, 12 Sep 2017 07:27:51 +0000 Subject: [PATCH] Dist Docker image migrated to alpine release --- docker/phar/Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docker/phar/Dockerfile b/docker/phar/Dockerfile index 6f8f5b1..921fc21 100644 --- a/docker/phar/Dockerfile +++ b/docker/phar/Dockerfile @@ -1,17 +1,16 @@ -FROM php:7.1-cli +FROM php:7.1-alpine MAINTAINER Cédric Dugat -# APT update and basic packages -RUN set -xe && \ - apt-get update && \ - apt-get install -y wget +RUN set -xe && apk update && \ + apk add --update wget && \ + rm -rf /var/cache/apk/* RUN wget --quiet --no-check-certificate -O \ /root/docker-arch-install \ https://raw.githubusercontent.com/Ph3nol/Docker-Arch/master/install.sh RUN chmod +x /root/docker-arch-install -RUN /root/docker-arch-install +RUN /bin/sh /root/docker-arch-install ENTRYPOINT ["/usr/local/bin/docker-arch"]