Skip to content

Commit 4a2e5a1

Browse files
committed
Docker: Add missing package to Python venv
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 47e0d21 commit 4a2e5a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Base/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ RUN apt-get -qqy update \
7777
&& apt-get upgrade -yq \
7878
&& apt-get -qqy --no-install-recommends install \
7979
python3 python3-pip python3-venv \
80-
&& python3 -m pip install --upgrade setuptools virtualenv requests --break-system-packages \
80+
&& python3 -m pip install --upgrade setuptools virtualenv --break-system-packages \
8181
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
8282
&& echo "source $VENV_PATH/bin/activate" >> /etc/bash.bashrc
8383

@@ -187,7 +187,7 @@ RUN ARCH=$(if [ "$(dpkg --print-architecture)" = "amd64" ]; then echo "x86_64";
187187
USER ${SEL_UID}:${SEL_GID}
188188

189189
RUN python3 -m venv $VENV_PATH \
190-
&& $VENV_PATH/bin/python3 -m pip install --upgrade pip setuptools virtualenv psutil \
190+
&& $VENV_PATH/bin/python3 -m pip install --upgrade pip setuptools virtualenv psutil requests \
191191
&& wget -q https://github.com/Supervisor/supervisor/archive/refs/heads/main.zip -O /tmp/supervisor.zip \
192192
&& unzip /tmp/supervisor.zip -d /tmp \
193193
&& cd /tmp/supervisor-main \

0 commit comments

Comments
 (0)