initial commit

This commit is contained in:
Sebastian Hugentobler 2017-01-10 11:05:37 +01:00
commit 7cdc03749a
3 changed files with 22 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM alpine:3.5
MAINTAINER Sebastian Hugentobler <sebastian@vanwa.ch>
ENV S6_OVERLAY_VERSION=v1.18.1.5
RUN apk --no-cache add libressl
RUN wget -qO- https://github.com/just-containers/s6-overlay/releases/download/$S6_OVERLAY_VERSION/s6-overlay-amd64.tar.gz | tar -xz -C /
RUN apk del libressl
ENTRYPOINT ["/init"]