bdc837d03f
- Updates `.goreleaser.yml` to add docker build step - Adds `Dockerfile` for listmonk - Adds `docker-compose.yml` for reference.
6 lines
222 B
Docker
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"]
|