Skip to content

Commit c48343c

Browse files
committed
docker: create Python virtual environment
Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent 4b32518 commit c48343c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,8 @@ RUN git clone https://github.com/emscripten-core/emsdk.git /opt/emsdk --depth 1
4545
ln -s /opt/emsdk/node/* /opt/emsdk/node/node
4646

4747
ENV PATH="/opt/emsdk:/opt/emsdk/upstream/emscripten:/opt/emsdk/node/node/bin:$PATH"
48+
49+
# Create Python virtual environment
50+
RUN python3 -m venv /opt/venv
51+
52+
ENV PATH="/opt/venv/bin:$PATH"

0 commit comments

Comments
 (0)