Skip to content

Commit

Permalink
Use Alpine 3.20 as our base image
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Dec 4, 2024
1 parent 14ffb77 commit a245f21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .release-notes/alpine-320.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Use Alpine 3.20 as our base image

Previously we were using Alpine 3.18 which has reached it's end-of-life. The change to 3.20 should have no impact on anyone unless they are using this image as the base image for another image.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ghcr.io/ponylang/changelog-tool:release AS changelog-tool
FROM alpine:3.18
FROM alpine:3.20

COPY --from=changelog-tool /usr/local/bin/changelog-tool /usr/local/bin/changelog-tool

Expand All @@ -9,7 +9,7 @@ RUN apk add --update --no-cache \
git \
py3-pip

RUN pip3 install \
RUN pip3 install --break-system-packages \
gitpython \
PyGithub==v1.54.1 \
pylint
Expand Down

0 comments on commit a245f21

Please sign in to comment.