From 427208ff8d43651a46ff6635e7602f34f91d5c93 Mon Sep 17 00:00:00 2001 From: Yax <1949284+kianby@users.noreply.github.com> Date: Fri, 12 Nov 2021 12:00:02 +0100 Subject: [PATCH] install tzdata --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5a09258..30a6879 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.9-alpine ARG STACOSYS_VERSION=2.0 ARG STACOSYS_FILENAME=stacosys-${STACOSYS_VERSION}-py3-none-any.whl -RUN apk update && apk add bash && apk add wget && rm -rf /var/cache/apk/* +RUN apk update && apk add bash && apk add wget && apk add tzdata && rm -rf /var/cache/apk/* COPY docker/docker-init.sh /usr/local/bin/ RUN chmod +x usr/local/bin/docker-init.sh