diff --git a/Dockerfile b/Dockerfile index ad6df92..69f2b07 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,10 @@ FROM python:3.8.5-slim -RUN apt-get update && apt-get install -y curl -RUN mkdir /app && mkdir /db +RUN apt-get update \ + && apt-get install -y curl \ + && echo "Europe/Paris" > /etc/timezone \ + && mkdir /app && mkdir /db + WORKDIR /app COPY requirements.txt ./ RUN pip install -r requirements.txt