Skip to content

Commit b39aab5

Browse files
authored
Update Alpine to 3.21.3 (#51)
* Update Alpine to 3.21.3 * Address review comments (update README.md)
1 parent 7a4d298 commit b39aab5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# When updating, update the README and the alpine_version ARG
1010
# * Use current version from https://alpinelinux.org/downloads/
1111
# * ARGs repeat because Dockerfile ARGs are layer specific but will reuse the value defined here.
12-
ARG alpine_version=3.21.2
12+
ARG alpine_version=3.21.3
1313

1414
# We copy files from the context into a scratch container first to avoid a problem where docker and
1515
# docker-compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ docker run -ti --rm ghcr.io/openzipkin/alpine:3.21.2
2020
## Release process
2121
Build the `Dockerfile` using the current version from https://alpinelinux.org/downloads/:
2222
```bash
23-
# Note 3.21.2 not 3.21!
24-
./build-bin/build 3.21.2
23+
# Note 3.21.3 not 3.21!
24+
./build-bin/build 3.21.3
2525
```
2626

2727
Next, verify the built image matches that version:
2828
```bash
2929
docker run --rm openzipkin/alpine:test -c 'cat /etc/alpine-release'
30-
3.21.2
30+
3.21.3
3131
```
3232

33-
To release the image, push a tag matching the arg to `build-bin/build` (ex `3.21.2`).
33+
To release the image, push a tag matching the arg to `build-bin/build` (ex `3.21.3`).
3434
This triggers a [GitHub Actions](https://github.com/openzipkin/docker-alpine/actions) job to push the image.

0 commit comments

Comments
 (0)