From 569a15afa45cde45acb4fa9133481f9abcb68c71 Mon Sep 17 00:00:00 2001 From: jeanGaston Date: Mon, 29 Jan 2024 16:59:48 +0100 Subject: [PATCH] as usual --- DataScraper/DOCKERFILE | 4 ++-- WebGui/DOCKERFILE | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DataScraper/DOCKERFILE b/DataScraper/DOCKERFILE index 501279c..6d0d4de 100644 --- a/DataScraper/DOCKERFILE +++ b/DataScraper/DOCKERFILE @@ -7,8 +7,8 @@ WORKDIR /app # Copy the script1.py and any other necessary files COPY ./Helloworld.py /app/ -# Install any dependencies specific to script1.py -RUN pip install --no-cache-dir -r ./requirements.txt +# Install any dependencies +#RUN pip install --no-cache-dir -r ./requirements.txt # Set the entry point CMD ["python", "Helloworld.py"] \ No newline at end of file diff --git a/WebGui/DOCKERFILE b/WebGui/DOCKERFILE index 0e439f7..e19514b 100644 --- a/WebGui/DOCKERFILE +++ b/WebGui/DOCKERFILE @@ -7,8 +7,8 @@ WORKDIR /app # Copy the script1.py and any other necessary files COPY ./Helloworld.py /app/ -# Install any dependencies specific to script1.py -RUN pip install --no-cache-dir -r ./requirements.txt +# Install any dependencies +RUN pip install --no-cache-dir Flask==2.1.2 # Set the entry point CMD ["python", "Helloworld.py"]