add syslog-ng to base image

This commit is contained in:
Sebastian Hugentobler 2017-02-15 14:51:29 +01:00
parent 7cdc03749a
commit a2724ee2e9
3 changed files with 32 additions and 2 deletions

View file

@ -1,10 +1,12 @@
FROM alpine:3.5
MAINTAINER Sebastian Hugentobler <sebastian@vanwa.ch>
ENV S6_OVERLAY_VERSION=v1.18.1.5
ENV S6_OVERLAY_VERSION=v1.19.1.1
RUN apk --no-cache add libressl
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 /
RUN apk del libressl
ADD /rootfs /
ENTRYPOINT ["/init"]