chg: Dockerfile (ubuntu) - exclude pip in venv

This commit is contained in:
Bharath Vignesh J K 2023-05-14 00:43:45 +05:30
parent e90d33eca6
commit ab016bc15e
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN python${PYTHON_VERSION} -m venv venv
RUN python${PYTHON_VERSION} -m venv --without-pip venv
COPY requirements.txt docker-requirements.txt webui-requirements.txt optional-requirements.txt ./