mirror of
https://github.com/knadh/listmonk.git
synced 2025-01-06 06:05:48 +08:00
6 lines
157 B
Docker
6 lines
157 B
Docker
FROM alpine:latest AS deploy
|
|
RUN apk --no-cache add ca-certificates
|
|
WORKDIR /listmonk
|
|
COPY listmonk .
|
|
COPY config.toml.sample config.toml
|
|
CMD ["./listmonk"]
|