accounts/deploy/base-images/mail-stack/chasquid/Dockerfile
2025-12-03 13:24:40 +08:00

15 lines
259 B
Docker

FROM alpine:3.20
RUN apk add --no-cache chasquid bash ca-certificates tzdata openssl shadow
WORKDIR /chasquid
COPY config/ /etc/chasquid-tmpl/
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 25 465 587
ENTRYPOINT ["/entrypoint.sh"]