try with python -m pip

This commit is contained in:
Luke Robles 2023-05-18 11:09:31 -07:00
parent ec3c0ffe8e
commit 15fb528f08

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 && \