Skip to content

Commit 981e2c5

Browse files
committed
ci(pip): externalize dependences
1 parent ee67af3 commit 981e2c5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

csv/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ RUN apk upgrade --no-cache \
3030
&& apk cache --no-cache clean \
3131
&& rm -rf /var/cache/apk/*
3232

33-
COPY requirements.txt requirements.txt
33+
COPY requirements.txt /tmp/requirements.txt
3434

3535
RUN pipx ensurepath --global \
36-
&& xargs -a requirements.txt -n 1 pipx install --global \
37-
&& rm -f requirements.txt
36+
&& xargs -a /tmp/requirements.txt -n 1 pipx install --global \
37+
&& rm -f /tmp/requirements.txt
3838

3939
RUN adduser \
4040
--home "${USER_HOME}" \

0 commit comments

Comments
 (0)