docker-smtp-relay/Dockerfile

12 lines
169 B
Docker
Raw Permalink Normal View History

2024-05-20 18:35:01 +00:00
FROM alpine:latest
RUN \
apk --no-cache upgrade && \
apk --no-cache add postfix
COPY rootfs /
VOLUME /config
ENTRYPOINT [ "/bin/sh", "/app/entrypoint.sh" ]