Skip to content

Commit

Permalink
Move security patches to the end
Browse files Browse the repository at this point in the history
  • Loading branch information
bbfrederick committed Nov 19, 2024
1 parent 5be9afc commit 8387001
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ RUN echo "GITDATE: "$GITDATE
# Installing precomputed python packages
RUN uv pip install pillow

# security patches
RUN uv pip install "cryptography>=42.0.4" "urllib3>=1.26.17"

# copy PICAchooser into container
COPY . /src/picachooser
RUN echo $GITVERSION > /src/picachooser/VERSION
Expand All @@ -42,6 +39,9 @@ RUN cd /src/picachooser && \
versioneer install --no-vendor && \
rm -rf /src/picachooser/build /src/picachooser/dist

# security patches
RUN uv pip install "cryptography>=42.0.4" "urllib3>=1.26.17"

# clean up
RUN pip cache purge

Expand Down

0 comments on commit 8387001

Please sign in to comment.