Skip to content

Commit

Permalink
chore(deps): update alpine docker tag to v3.19 (#39)
Browse files Browse the repository at this point in the history
Co-authored-by: serp-renovate[bot] <146882749+serp-renovate[bot]@users.noreply.github.com>
Co-authored-by: Joss Whittle <joss@chi.swan.ac.uk>
  • Loading branch information
serp-renovate[bot] and JossWhittle authored Dec 19, 2023
1 parent 54a5ed0 commit ef4f7b6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions containers/canary/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM alpine:3.18 as base
FROM alpine:3.19 as base

COPY src/ /opt/

RUN apk update && apk add --update --no-cache \
python3 \
py3-pip && \
pip install pyclean --no-cache-dir && \
pip install -r /opt/requirements.txt --no-cache-dir && \
RUN apk update && \
apk add --update --no-cache python3 py3-pip && \
pip install --break-system-packages pyclean --no-cache-dir && \
pip install --break-system-packages -r /opt/requirements.txt --no-cache-dir && \
rm /opt/requirements.txt && \
pyclean -v /usr && \
pip uninstall -y pyclean && \
pyclean -v ~/ && \
pip uninstall --break-system-packages -y pyclean && \
apk del py3-pip && \
rm -rf /var/cache/apk/*

Expand Down

0 comments on commit ef4f7b6

Please sign in to comment.