upgrade pip

This commit is contained in:
mrT23
2023-09-10 07:36:25 +03:00
parent 6fb8a882af
commit 498ad3d19c
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ FROM python:3.10 as base
WORKDIR /app
ADD pyproject.toml .
ADD requirements.txt .
RUN pip install --upgrade pip
RUN pip install . && rm pyproject.toml requirements.txt
ENV PYTHONPATH=/app