alpine-s6/Dockerfile

13 lines
342 B
Text
Raw Normal View History

2017-07-28 10:06:40 +02:00
FROM alpine:3.6
2017-01-10 11:05:37 +01:00
MAINTAINER Sebastian Hugentobler <sebastian@vanwa.ch>
2017-02-15 14:51:29 +01:00
ENV S6_OVERLAY_VERSION=v1.19.1.1
2017-01-10 11:05:37 +01:00
2017-02-15 14:51:29 +01:00
RUN apk --no-cache add libressl syslog-ng
2017-01-10 11:05:37 +01:00
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
2017-02-15 14:51:29 +01:00
ADD /rootfs /
2017-01-10 11:05:37 +01:00
ENTRYPOINT ["/init"]