listmonk/Dockerfile
mr-karan bdc837d03f feat: Create docker release
- Updates `.goreleaser.yml` to add docker build step
- Adds `Dockerfile` for listmonk
- Adds `docker-compose.yml` for reference.
2019-07-12 07:52:05 +05:30

6 lines
222 B
Docker

FROM alpine:latest AS deploy
RUN apk --no-cache add ca-certificates
COPY listmonk /
COPY config.toml.sample /etc/listmonk/config.toml
VOLUME ["/etc/listmonk"]
CMD ["./listmonk", "--config", "/etc/listmonk/config.toml"]