This is the main dovel repository, it has the Go code to run dovel SMTP server.
FROM golang:latest as builder RUN go install dovel.email/server@v0.13.0 FROM scratch COPY --from=builder /go/bin/server / CMD ["/server"]