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