Skip to content

Commit 9ab7702

Browse files
authored
Make the venv dir in apptainer writeable (#431)
1 parent 1f6ad1c commit 9ab7702

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apptainer/iris.def

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ From: rocm/pytorch:rocm7.1_ubuntu24.04_py3.13_pytorch_release_2.9.1
1515
# Install system packages
1616
apt-get update && \
1717
DEBIAN_FRONTEND=noninteractive apt-get install -y \
18-
git wget ninja-build cmake python3-pip python3-dev build-essential jq && \
18+
git wget ninja-build cmake python3-pip python3-dev build-essential jq libdwarf-dev && \
1919
rm -rf /var/lib/apt/lists/*
2020

2121
# Create groups if they don't exist
@@ -32,6 +32,9 @@ From: rocm/pytorch:rocm7.1_ubuntu24.04_py3.13_pytorch_release_2.9.1
3232
cd \$TRITON_PATH
3333
git checkout bcbcabdd0cff6539c7168299075992b2a23ff38e
3434
pip3 install -e .
35+
36+
# Make the venv writable by all
37+
chmod -R 777 /opt/venv
3538
"
3639

3740
%environment

0 commit comments

Comments
 (0)