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"]