alpine-s6/Dockerfile

15 lines
374 B
Docker
Raw Normal View History

2019-06-20 07:17:10 +00:00
FROM alpine:3.10
2018-02-16 06:56:01 +00:00
LABEL maintainer="Sebastian Hugentobler <sebastian@vanwa.ch>"
2017-01-10 10:05:37 +00:00
2019-02-25 07:53:53 +00:00
ENV S6_OVERLAY_VERSION=v1.22.0.0
2019-02-05 08:33:47 +00:00
ENV LANG=en_US.UTF-8
2019-02-25 07:53:53 +00:00
RUN apk --no-cache add syslog-ng
2018-12-03 13:04:00 +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 /
2017-01-10 10:05:37 +00:00
2017-10-06 16:35:27 +00:00
RUN apk --no-cache upgrade
2017-02-15 13:51:29 +00:00
ADD /rootfs /
2017-01-10 10:05:37 +00:00
ENTRYPOINT ["/init"]