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