Commit 00f55be 1 parent 70e9d1c commit 00f55be Copy full SHA for 00f55be
File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 18
18
# When updating, update the README and the alpine_version ARG
19
19
# * Use current version from https://alpinelinux.org/downloads/
20
20
# * ARGs repeat because Dockerfile ARGs are layer specific but will reuse the value defined here.
21
- ARG alpine_version=3.20.0
21
+ ARG alpine_version=3.20.2
22
22
23
23
# We copy files from the context into a scratch container first to avoid a problem where docker and
24
24
# docker-compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.
@@ -29,7 +29,7 @@ COPY . /code/
29
29
30
30
# See from a previously published version to avoid pulling from Docker Hub (docker.io)
31
31
# This version is only used to install the real version
32
- FROM ghcr.io/openzipkin/alpine:3.18.5 as install
32
+ FROM ghcr.io/openzipkin/alpine:3.20.0 as install
33
33
34
34
WORKDIR /code
35
35
# Conditions aren't supported in Dockerfile instructions, so we copy source even if it isn't used.
Original file line number Diff line number Diff line change @@ -13,22 +13,22 @@ This is an internal base layer primarily used in [docker-java](https://github.co
13
13
14
14
To browse the image, run it in interactive mode with TTY enabled like so:
15
15
``` bash
16
- docker run -ti --rm ghcr.io/openzipkin/alpine:3.20.0
16
+ docker run -ti --rm ghcr.io/openzipkin/alpine:3.20.2
17
17
/ #
18
18
```
19
19
20
20
## Release process
21
21
Build the ` Dockerfile ` using the current version from https://alpinelinux.org/downloads/ :
22
22
``` bash
23
- # Note 3.20.0 not 3.19!
24
- ./build-bin/build 3.20.0
23
+ # Note 3.20.2 not 3.19!
24
+ ./build-bin/build 3.20.2
25
25
```
26
26
27
27
Next, verify the built image matches that version:
28
28
``` bash
29
29
docker run --rm openzipkin/alpine:test -c ' cat /etc/alpine-release'
30
- 3.20.0
30
+ 3.20.2
31
31
```
32
32
33
- To release the image, push a tag matching the arg to ` build-bin/build ` (ex ` 3.20.0 ` ).
33
+ To release the image, push a tag matching the arg to ` build-bin/build ` (ex ` 3.20.2 ` ).
34
34
This triggers a [ GitHub Actions] ( https://github.com/openzipkin/docker-alpine/actions ) job to push the image.
You can’t perform that action at this time.
0 commit comments