list

server

This is the main dovel repository, it has the Go code to run dovel SMTP server.

curl -O https://dovel.email/server.tar.gz tar.gz

Dockerfile

  1. FROM golang:latest as builder
  2. RUN go install dovel.email/server@v0.13.0
  3. FROM scratch
  4. COPY --from=builder /go/bin/server /
  5. CMD ["/server"]