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 57e4b3f commit f121a0dCopy full SHA for f121a0d
Dockerfile
@@ -5,8 +5,8 @@ FROM alpine:${ALPINE_VERSION}
5
RUN apk add --no-cache git python3 python3-dev py3-pip py3-setuptools build-base
6
7
# build wheels in a build stage
8
-ENV VIRTUAL_ENV /opt/venv
9
-ENV PATH ${VIRTUAL_ENV}/bin:${PATH}
+ENV VIRTUAL_ENV=/opt/venv
+ENV PATH=${VIRTUAL_ENV}/bin:${PATH}
10
11
RUN python3 -m venv ${VIRTUAL_ENV}
12
@@ -23,8 +23,8 @@ FROM alpine:${ALPINE_VERSION}
23
# install python, git, bash, mercurial
24
RUN apk add --no-cache git git-lfs python3 py3-pip py3-setuptools bash docker mercurial
25
26
27
28
29
30
0 commit comments