Skip to content

Commit 25e1469

Browse files
committed
fix venv initial setup
1 parent 7d3ec2e commit 25e1469

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,10 @@ RUN \
186186
cd /tmp && \
187187
tar xf selkies.tar.gz && \
188188
cd selkies-* && \
189-
python3 -m venv /lsiopy && \
189+
python3 \
190+
-m venv \
191+
--system-site-packages \
192+
/lsiopy && \
190193
pip install . && \
191194
pip install setuptools && \
192195
echo "**** install selkies interposer ****" && \

Dockerfile.aarch64

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,10 @@ RUN \
184184
cd /tmp && \
185185
tar xf selkies.tar.gz && \
186186
cd selkies-* && \
187-
python3 -m venv /lsiopy && \
187+
python3 \
188+
-m venv \
189+
--system-site-packages \
190+
/lsiopy && \
188191
pip install . && \
189192
pip install setuptools && \
190193
echo "**** install selkies interposer ****" && \

0 commit comments

Comments
 (0)