From f5417775d223c956f1595c7946305f1c947f3ca6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Norh=C3=B8j?= Date: Tue, 15 Nov 2022 21:51:10 +0100 Subject: [PATCH] Added tzdata to Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index a312569..b934da1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ WORKDIR /app COPY . . +RUN apk add tzdata + RUN pip install pipenv && \ pipenv install --deploy --system && \ pip uninstall pipenv -y