mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-01 20:27:36 +03:00
1. go-smtp is replaced by a fork that reverts StartTLS removal. 2. SASL LOGIN is no longer supported by upstream go-sasl, readded disabled by default. 3. Updated endpoint code to match new go-smtp authentication interfaces. 4. certmagic repo had some renames 5. Minimum Go version increased to 1.23 to match dependencies.
32 lines
870 B
Docker
32 lines
870 B
Docker
FROM golang:1.23-alpine AS build-env
|
|
|
|
ARG ADDITIONAL_BUILD_TAGS=""
|
|
|
|
RUN set -ex && \
|
|
apk upgrade --no-cache --available && \
|
|
apk add --no-cache build-base
|
|
|
|
WORKDIR /maddy
|
|
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
COPY . ./
|
|
RUN mkdir -p /pkg/data && \
|
|
cp maddy.conf.docker /pkg/data/maddy.conf && \
|
|
./build.sh --builddir /tmp --destdir /pkg/ --tags "docker ${ADDITIONAL_BUILD_TAGS}" build install
|
|
|
|
FROM alpine:3.21.2
|
|
LABEL maintainer="fox.cpp@disroot.org"
|
|
LABEL org.opencontainers.image.source=https://github.com/foxcpp/maddy
|
|
|
|
RUN set -ex && \
|
|
apk upgrade --no-cache --available && \
|
|
apk --no-cache add ca-certificates
|
|
COPY --from=build-env /pkg/data/maddy.conf /data/maddy.conf
|
|
COPY --from=build-env /pkg/usr/local/bin/maddy /bin/
|
|
|
|
EXPOSE 25 143 993 587 465
|
|
VOLUME ["/data"]
|
|
ENTRYPOINT ["/bin/maddy", "-config", "/data/maddy.conf"]
|
|
CMD ["run"]
|