Added command to update pip setuptools and install wheel in Dockerfile

This commit is contained in:
StNicolay 2022-11-18 11:34:04 +00:00
parent d68a7bb6e8
commit fd002e3718

View File

@ -16,7 +16,8 @@ RUN apt update && apt full-upgrade -y
# Install pip requirements
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
RUN pip install -U pip setuptools wheel
RUN pip install -r requirements.txt
COPY . /app