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