mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-10 17:13:04 +08:00
8 lines
183 B
Docker
8 lines
183 B
Docker
FROM alpine:latest
|
|
RUN apk --no-cache add ca-certificates
|
|
WORKDIR /listmonk
|
|
COPY listmonk .
|
|
COPY config.toml.sample config.toml
|
|
COPY config-demo.toml .
|
|
CMD ["./listmonk"]
|
|
EXPOSE 9000
|