diff --git a/pythonProject/Dockerfile b/pythonProject/Dockerfile index c708cee..08a8f25 100644 --- a/pythonProject/Dockerfile +++ b/pythonProject/Dockerfile @@ -5,7 +5,10 @@ FROM python:3.10-alpine WORKDIR /app # add required clis -RUN apk add --no-cache openssl +RUN apk add --no-cache openssl tzdata + +# set timezone +RUN ln -s /usr/share/zoneinfo/Europe/Paris /etc/localtime # Copy requirements.txt to the Docker container COPY requirements.txt .