Skip to content

Commit d412ccd

Browse files
authored
Containers/Ubuntu-24: Allow CI user access to venv (#407)
Many of the existing CI workflows expect a pip environment to use. A new user and group are created for the docker user when the container image is initialized in pipelines. This allows that user to use the /opt/venv environment to support existing workflows. Signed-off-by: Michael Kubacki <[email protected]>
1 parent 200d5f6 commit d412ccd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Containers/Ubuntu-24/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ RUN apt-get update && \
7373
gcc-${GCC_MAJOR_VERSION}-arm-linux-gnueabihf \
7474
&& \
7575
python3.12 -m venv /opt/venv && \
76+
chmod -R g+w,o+w /opt/venv && \
7677
/opt/venv/bin/pip install --upgrade pip setuptools && \
7778
apt-get upgrade -y && \
7879
apt-get clean && \

0 commit comments

Comments
 (0)