alpine-s6/Dockerfile

13 lines
359 B
Docker
Raw Normal View History

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