From 8b1a331eb4edfa5a1cd22477d040e1dfcd1c4463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl?= Date: Wed, 3 Jul 2024 19:06:56 +0200 Subject: [PATCH] up docker --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index ab5816c..4509715 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,11 @@ FROM python:3.8 RUN apt-get update && apt-get install -y git RUN git clone http://192.168.1.25:8124/zep/Substack_JV.git /app WORKDIR /app + +RUN pip install --upgrade pip +COPY requirements.txt . RUN pip install -r requirements.txt + ENV TZ=Europe/Brussels RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone