correct timezone

This commit is contained in:
Gaël Honorez
2024-01-02 08:40:11 +01:00
parent 5c68063ad3
commit 320863ca50

View File

@@ -3,6 +3,7 @@ RUN apt-get update && apt-get install -y git
RUN git clone http://192.168.1.25:8124/zep/Substack_JV.git /app RUN git clone http://192.168.1.25:8124/zep/Substack_JV.git /app
WORKDIR /app WORKDIR /app
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
COPY update_and_run.sh /app ENV TZ=Europe/Brussels
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN chmod +x /app/update_and_run.sh RUN chmod +x /app/update_and_run.sh
CMD ["./update_and_run.sh"] CMD ["./update_and_run.sh"]