Files
archived-Mailu/core/postfix/Dockerfile
Florent Daigniere 5163fc8af1 Fix logs in the SMTP container
(cherry picked from commit eec9d1201f)
2023-04-22 09:47:27 +00:00

23 lines
400 B
Docker

# syntax=docker/dockerfile-upstream:1.4.3
# postfix image
FROM base
ARG VERSION=local
LABEL version=$VERSION
RUN set -euxo pipefail \
; apk add --no-cache cyrus-sasl-login postfix postfix-pcre logrotate
COPY conf/ /conf/
COPY start.py /
RUN echo $VERSION >/version
#EXPOSE 25/tcp 10025/tcp
HEALTHCHECK --start-period=30s CMD ! /usr/libexec/postfix/master -t
VOLUME ["/queue"]
CMD /start.py