MailerServer/Dockerfile

8 lines
99 B
Docker

FROM golang:latest
WORKDIR /app
COPY main /app/main
COPY templates /app/templates
CMD ["./main"]