Fix timezone

This commit is contained in:
Gabriel Augendre 2022-03-25 19:25:12 +01:00
parent 3411b84d83
commit 2e864ba082
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ RUN git rev-parse HEAD | tee /version
## Beginning of runtime image
FROM python:3.10.4-slim-bullseye as final
RUN echo "Europe/Paris" > /etc/timezone
ENV TZ "Europe/Paris"
COPY --from=venv /app/venv /app/venv/
ENV PATH /app/venv/bin:$PATH