2019-07-12 01:54:33 +00:00
|
|
|
FROM alpine:latest AS deploy
|
|
|
|
RUN apk --no-cache add ca-certificates
|
2019-07-12 08:20:44 +00:00
|
|
|
WORKDIR /listmonk
|
|
|
|
COPY listmonk .
|
|
|
|
COPY config.toml.sample config.toml
|
2020-07-08 17:08:31 +00:00
|
|
|
COPY config-demo.toml .
|
2019-07-12 08:20:44 +00:00
|
|
|
CMD ["./listmonk"]
|
2021-02-19 17:34:09 +00:00
|
|
|
EXPOSE 9000
|