mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-09 14:42:39 +01:00
17 lines
263 B
Docker
17 lines
263 B
Docker
|
|
FROM alpine:edge
|
||
|
|
|
||
|
|
RUN apk add --no-cache \
|
||
|
|
bash \
|
||
|
|
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"]
|