mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
c174139071
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
20 lines
355 B
Docker
20 lines
355 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
ca-certificates \
|
|
libsasl \
|
|
mailx \
|
|
postfix \
|
|
rsyslog \
|
|
runit \
|
|
--repository https://dl-3.alpinelinux.org/alpine/edge/main
|
|
|
|
COPY service /etc/service
|
|
COPY runit_bootstrap /usr/sbin/runit_bootstrap
|
|
COPY rsyslog.conf /etc/rsyslog.conf
|
|
|
|
STOPSIGNAL SIGKILL
|
|
|
|
ENTRYPOINT ["/usr/sbin/runit_bootstrap"]
|