update pip install

This commit is contained in:
jeanGaston 2024-01-30 09:36:31 +01:00
parent 438f21e035
commit b714c62dad
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ WORKDIR /app
COPY ./main.py /app/ COPY ./main.py /app/
# Install any dependencies # Install any dependencies
RUN pip install --no-cache-dir bluepy RUN pip3 install --no-cache-dir bluepy
# Set the entry point # Set the entry point
CMD ["python", "main.py"] CMD ["python", "main.py"]

View File

@ -11,7 +11,7 @@ COPY ./Helloworld.py /app/
EXPOSE 5000 EXPOSE 5000
# Install any dependencies # Install any dependencies
RUN pip install --no-cache-dir flask RUN pip3 install --no-cache-dir flask
# Set the entry point # Set the entry point
CMD ["python", "Helloworld.py"] CMD ["python", "Helloworld.py"]