try with python -m pip

This commit is contained in:
Luke Robles 2023-05-18 11:09:31 -07:00
parent e5ad14e466
commit f077f45490

View File

@ -1,6 +1,6 @@
FROM python:3.10-rc as build
ADD app/requirements.txt /requirements.txt
RUN pip install -q --no-cache-dir -r requirements.txt
RUN python -m pip install -q --no-cache-dir -r requirements.txt
FROM python:3.10-rc-slim
RUN apt update && \