From 543ed585fc4e2ceeaccb715a054017cd40fd6818 Mon Sep 17 00:00:00 2001 From: jeanGaston Date: Mon, 29 Jan 2024 16:57:33 +0100 Subject: [PATCH] still some stupid errors --- DataScraper/DOCKERFILE | 2 +- WebGui/DOCKERFILE | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DataScraper/DOCKERFILE b/DataScraper/DOCKERFILE index aac2eff..501279c 100644 --- a/DataScraper/DOCKERFILE +++ b/DataScraper/DOCKERFILE @@ -8,7 +8,7 @@ WORKDIR /app COPY ./Helloworld.py /app/ # Install any dependencies specific to script1.py -RUN pip install --no-cache-dir -r requirements.txt +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 f3d8a3e..0e439f7 100644 --- a/WebGui/DOCKERFILE +++ b/WebGui/DOCKERFILE @@ -8,7 +8,7 @@ WORKDIR /app COPY ./Helloworld.py /app/ # Install any dependencies specific to script1.py -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r ./requirements.txt # Set the entry point CMD ["python", "Helloworld.py"]