Skip to content

Commit

Permalink
Dist Docker image migrated to alpine release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ph3nol committed Sep 12, 2017
1 parent e87e122 commit 26f38e2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docker/phar/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
FROM php:7.1-cli
FROM php:7.1-alpine

MAINTAINER Cédric Dugat <[email protected]>

# 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"]

0 comments on commit 26f38e2

Please sign in to comment.