We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a83e08 commit c1b8392Copy full SHA for c1b8392
Dockerfile
@@ -24,8 +24,8 @@ FROM python:3.12-alpine AS builder
24
25
RUN apk add --no-cache curl bzip2 gcc libffi-dev musl-dev
26
RUN pip install --no-cache-dir virtualenv
27
-RUN virtualenv /opt/venv && source /opt/venv/bin/activate && \
28
- python -m pip install --no-cache-dir datalad pytest ssh_agent_setup && \
+RUN virtualenv --system-site-packages /opt/venv && source /opt/venv/bin/activate && \
+ python -m pip install --no-cache-dir datalad pytest ssh_agent_setup && \
29
python -m pip uninstall -y pip # save 10MB
30
31
FROM python:3.12-alpine
0 commit comments