Skip to content

Commit a64fa57

Browse files
Bumps to Alpine 3.19.1 (#43)
Signed-off-by: Adrian Cole <[email protected]>
1 parent d7d3a74 commit a64fa57

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# When updating, update the README and the alpine_version ARG
1919
# * Use current version from https://alpinelinux.org/downloads/
2020
# * ARGs repeat because Dockerfile ARGs are layer specific but will reuse the value defined here.
21-
ARG alpine_version=3.19.0
21+
ARG alpine_version=3.19.1
2222

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

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@ This is an internal base layer primarily used in [docker-java](https://github.co
1313

1414
To browse the image, run it in interactive mode with TTY enabled like so:
1515
```bash
16-
docker run -ti --rm ghcr.io/openzipkin/alpine:3.19.0
16+
docker run -ti --rm ghcr.io/openzipkin/alpine:3.19.1
1717
/ #
1818
```
1919

2020
## Release process
2121
Build the `Dockerfile` using the current version from https://alpinelinux.org/downloads/:
2222
```bash
23-
# Note 3.19.0 not 3.19!
24-
./build-bin/build 3.19.0
23+
# Note 3.19.1 not 3.19!
24+
./build-bin/build 3.19.1
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.19.0
30+
3.19.1
3131
```
3232

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

0 commit comments

Comments
 (0)