From 7a84db633c14d5347489d446214d34b6b78662fe Mon Sep 17 00:00:00 2001 From: hasslesstech Date: Wed, 25 Sep 2024 14:56:37 +0300 Subject: [PATCH] fix wrong timezone --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8b5b062..7672013 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,9 @@ FROM python:3.11-slim-bullseye WORKDIR /app +RUN rm /etc/localtime +RUN ln -s /usr/share/zoneinfo/Europe/Kyiv /etc/localtime + COPY ./requirements.txt /app/requirements.txt RUN python -m pip install -r requirements.txt