fix wrong timezone
This commit is contained in:
parent
64d6638cc3
commit
7a84db633c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue