We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee67af3 commit 981e2c5Copy full SHA for 981e2c5
1 file changed
csv/Dockerfile
@@ -30,11 +30,11 @@ RUN apk upgrade --no-cache \
30
&& apk cache --no-cache clean \
31
&& rm -rf /var/cache/apk/*
32
33
-COPY requirements.txt requirements.txt
+COPY requirements.txt /tmp/requirements.txt
34
35
RUN pipx ensurepath --global \
36
- && xargs -a requirements.txt -n 1 pipx install --global \
37
- && rm -f requirements.txt
+ && xargs -a /tmp/requirements.txt -n 1 pipx install --global \
+ && rm -f /tmp/requirements.txt
38
39
RUN adduser \
40
--home "${USER_HOME}" \
0 commit comments