From 1d86024513f2263352c38f629cb99b50c18e2ee3 Mon Sep 17 00:00:00 2001 From: matthias Date: Mon, 2 Nov 2020 05:46:19 +0000 Subject: [PATCH] install tzdata --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 32ee85f..48bdb5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ RUN pip install --prefix=/install -r /requirements.txt FROM base COPY --from=builder /install /usr/local RUN addgroup -S appgroup && adduser -S appuser -G appgroup +RUN apk add --no-cache tzdata ENV TZ=Europe/Berlin RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone