mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-10 17:13:04 +08:00
e4d8286535
Adds `tzdata` in the `Dockerfile` of the app so that user can pass a `TZ` env variable to the container to configure their timezone information.
8 lines
190 B
Docker
8 lines
190 B
Docker
FROM alpine:latest
|
|
RUN apk --no-cache add ca-certificates tzdata
|
|
WORKDIR /listmonk
|
|
COPY listmonk .
|
|
COPY config.toml.sample config.toml
|
|
COPY config-demo.toml .
|
|
CMD ["./listmonk"]
|
|
EXPOSE 9000
|