Try and hard code setuptools and pip

This commit is contained in:
Luke Robles 2023-05-18 08:27:41 -07:00
parent 42d90927af
commit b6a68c4042

View File

@ -1,5 +1,6 @@
FROM python:3.8 as build
ADD app/requirements.txt /requirements.txt
RUN pip install -U pip setuptools==65.3.0
RUN pip install -q --no-cache-dir -r requirements.txt
FROM python:3.8-slim