mirror of
https://github.com/knadh/listmonk.git
synced 2025-01-04 13:20:17 +08:00
7 lines
222 B
Text
7 lines
222 B
Text
|
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"]
|