Skip to content

Commit 8387001

Browse files
committed
Move security patches to the end
1 parent 5be9afc commit 8387001

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ RUN echo "GITDATE: "$GITDATE
2424
# Installing precomputed python packages
2525
RUN uv pip install pillow
2626

27-
# security patches
28-
RUN uv pip install "cryptography>=42.0.4" "urllib3>=1.26.17"
29-
3027
# copy PICAchooser into container
3128
COPY . /src/picachooser
3229
RUN echo $GITVERSION > /src/picachooser/VERSION
@@ -42,6 +39,9 @@ RUN cd /src/picachooser && \
4239
versioneer install --no-vendor && \
4340
rm -rf /src/picachooser/build /src/picachooser/dist
4441

42+
# security patches
43+
RUN uv pip install "cryptography>=42.0.4" "urllib3>=1.26.17"
44+
4545
# clean up
4646
RUN pip cache purge
4747

0 commit comments

Comments
 (0)