mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 12:23:35 +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"]
|