13 lines
359 B
Docker
13 lines
359 B
Docker
FROM alpine:3.6
|
|
MAINTAINER Sebastian Hugentobler <sebastian@vanwa.ch>
|
|
|
|
ENV S6_OVERLAY_VERSION=v1.20.0.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
|
|
|
|
ADD /rootfs /
|
|
|
|
ENTRYPOINT ["/init"]
|