postfix/Dockerfile
Renovate Bot cc8fb9a13e
Some checks failed
lint, build and push / lint (push) Failing after 14m27s
lint, build and push / build (push) Has been cancelled
chore(deps): update alpine docker tag to v3.20.3 (#32)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2024-09-07 10:35:13 +02:00

20 lines
510 B
Docker

#Dockerfile for a Postfix email relay service
FROM alpine:3.20.3
COPY run.sh /
# hadolint ignore=DL3018
RUN apk update --no-cache && \
apk add --no-cache curl bash gawk cyrus-sasl cyrus-sasl-login cyrus-sasl-crammd5 mailx postfix-pcre \
postfix && \
mkdir -p /var/log/supervisor/ /var/run/supervisor/ && \
chmod +x /run.sh && \
newaliases
EXPOSE 25
#ENTRYPOINT ["/run.sh"]
CMD ["/run.sh"]
# health check
HEALTHCHECK --interval=30s \
CMD curl -s smtp://localhost:25 -v >/dev/null 2>&1