mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
3fef00b940
Signed-off-by: Jess Frazelle <acidburn@google.com>
18 lines
282 B
Docker
18 lines
282 B
Docker
FROM alpine:edge
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
ca-certificates \
|
|
libsasl \
|
|
postfix \
|
|
rsyslog \
|
|
runit
|
|
|
|
COPY service /etc/service
|
|
COPY runit_bootstrap /usr/sbin/runit_bootstrap
|
|
COPY rsyslog.conf /etc/rsyslog.conf
|
|
|
|
STOPSIGNAL SIGKILL
|
|
|
|
ENTRYPOINT ["/usr/sbin/runit_bootstrap"]
|