diff --git a/DataScraper/DOCKERFILE b/DataScraper/DOCKERFILE index b6a46a5..7139ffe 100644 --- a/DataScraper/DOCKERFILE +++ b/DataScraper/DOCKERFILE @@ -8,7 +8,7 @@ WORKDIR /app COPY ./main.py /app/ # Install any dependencies -RUN pip install --no-cache-dir bluepy +RUN pip3 install --no-cache-dir bluepy # Set the entry point CMD ["python", "main.py"] \ No newline at end of file diff --git a/WebGui/DOCKERFILE b/WebGui/DOCKERFILE index 5137a9c..e4d1136 100644 --- a/WebGui/DOCKERFILE +++ b/WebGui/DOCKERFILE @@ -11,7 +11,7 @@ COPY ./Helloworld.py /app/ EXPOSE 5000 # Install any dependencies -RUN pip install --no-cache-dir flask +RUN pip3 install --no-cache-dir flask # Set the entry point CMD ["python", "Helloworld.py"]