summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBharath Vignesh J K <52282402+RazCrimson@users.noreply.github.com>2023-05-14 00:43:45 +0530
committerBharath Vignesh J K <52282402+RazCrimson@users.noreply.github.com>2023-05-14 00:54:43 +0530
commitab016bc15e57b89f4821c29be7855ac49810ce69 (patch)
treef346745baef7eb3f9b261f86059ae358dadd12af
parente90d33eca610e477317016131b4afe07cf515e04 (diff)
chg: Dockerfile (ubuntu) - exclude pip in venv
-rw-r--r--docker-files/ubuntu.Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-files/ubuntu.Dockerfile b/docker-files/ubuntu.Dockerfile
index c776a840..daf8e1ab 100644
--- a/docker-files/ubuntu.Dockerfile
+++ b/docker-files/ubuntu.Dockerfile
@@ -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 ./