alpine-s6/Dockerfile
2018-07-10 10:34:42 +00:00

16 lines
396 B
Docker

FROM alpine:3.8
LABEL maintainer="Sebastian Hugentobler <sebastian@vanwa.ch>"
ENV S6_OVERLAY_VERSION=v1.21.4.0
RUN apk --no-cache add libressl syslog-ng incron && \
wget -qO- https://github.com/just-containers/s6-overlay/releases/download/$S6_OVERLAY_VERSION/s6-overlay-amd64.tar.gz | tar -xz -C / && \
apk del libressl
RUN apk --no-cache upgrade
ADD /rootfs /
ENTRYPOINT ["/init"]