Skip to content

Commit

Permalink
Use Alpine 3.20 as our base image (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen authored Dec 17, 2024
1 parent 784dac2 commit ef084a0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci-dockerfiles/alpine-bootstrap-tester/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.18
FROM alpine:3.20

RUN apk add --update --no-cache \
binutils-gold \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
name: Alpine bootstrap
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/ponyup-ci-alpine-bootstrap-tester:20230830
image: ghcr.io/ponylang/ponyup-ci-alpine-bootstrap-tester:20241204
steps:
- uses: actions/[email protected]
- name: Bootstrap test
Expand Down
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.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ WORKDIR /src/ponyup

RUN make arch=x86-64 static=true linker=bfd config=release

FROM alpine:3.18
FROM alpine:3.20

COPY --from=build /src/ponyup/build/release/ponyup /usr/local/bin/ponyup

Expand Down

0 comments on commit ef084a0

Please sign in to comment.