2018-07-10 10:34:42 +00:00
|
|
|
FROM alpine:3.8
|
2018-02-16 07:56:01 +01:00
|
|
|
LABEL maintainer="Sebastian Hugentobler <sebastian@vanwa.ch>"
|
2017-01-10 11:05:37 +01:00
|
|
|
|
2018-11-27 08:28:45 +01:00
|
|
|
ENV S6_OVERLAY_VERSION=v1.21.7.0
|
2017-01-10 11:05:37 +01:00
|
|
|
|
2018-12-03 13:58:39 +01:00
|
|
|
RUN apk --no-cache add libressl syslog-ng
|
|
|
|
RUN wget -qO- https://github.com/just-containers/s6-overlay/releases/download/$S6_OVERLAY_VERSION/s6-overlay-amd64.tar.gz | tar -xz -C
|
2017-01-10 11:05:37 +01:00
|
|
|
|
2017-10-06 18:35:27 +02:00
|
|
|
RUN apk --no-cache upgrade
|
|
|
|
|
2017-02-15 14:51:29 +01:00
|
|
|
ADD /rootfs /
|
|
|
|
|
2017-01-10 11:05:37 +01:00
|
|
|
ENTRYPOINT ["/init"]
|