From ae8dc5d6ae3298d2c8c8ce2a63f2cefb615cc1a8 Mon Sep 17 00:00:00 2001 From: jeanGaston Date: Mon, 29 Jan 2024 16:32:57 +0100 Subject: [PATCH] correct some errors --- DataScraper/DOCKERFILE_DataScraper | 2 +- WebGui/DOCKERFILE_webgui | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DataScraper/DOCKERFILE_DataScraper b/DataScraper/DOCKERFILE_DataScraper index 60d29dd..aac2eff 100644 --- a/DataScraper/DOCKERFILE_DataScraper +++ b/DataScraper/DOCKERFILE_DataScraper @@ -5,7 +5,7 @@ FROM python:3.8-slim WORKDIR /app # Copy the script1.py and any other necessary files -COPY Helloworld.py /app/ +COPY ./Helloworld.py /app/ # Install any dependencies specific to script1.py RUN pip install --no-cache-dir -r requirements.txt diff --git a/WebGui/DOCKERFILE_webgui b/WebGui/DOCKERFILE_webgui index c37c73c..f3d8a3e 100644 --- a/WebGui/DOCKERFILE_webgui +++ b/WebGui/DOCKERFILE_webgui @@ -5,7 +5,7 @@ FROM python:3.8-slim WORKDIR /app # Copy the script1.py and any other necessary files -COPY Helloworld.py /app/ +COPY ./Helloworld.py /app/ # Install any dependencies specific to script1.py RUN pip install --no-cache-dir -r requirements.txt