@@ -15,25 +15,27 @@ This is an internal base layer primarily used in [zipkin](https://github.com/ope
15
15
16
16
To try the image, run the ` java -version ` command:
17
17
``` bash
18
- openjdk version " 1.8.0_422"
19
- OpenJDK Runtime Environment (IcedTea 3.32.0) (Alpine 8.422.05-r0)
20
- OpenJDK 64-Bit Server VM (build 25.422-b05, mixed mode)
18
+ $ docker run --rm ghcr.io/openzipkin/java:8.432.06 -version
19
+ openjdk version " 1.8.0_432"
20
+ OpenJDK Runtime Environment (IcedTea 3.33.0) (Alpine 8.432.06-r1)
21
+ OpenJDK 64-Bit Server VM (build 25.432-b06, mixed mode)
21
22
```
22
23
23
24
## Release process
24
25
Build the ` Dockerfile ` using the current version without the revision classifier from here:
25
26
* https://pkgs.alpinelinux.org/packages?name=openjdk8
26
27
``` bash
27
- # Note 8.422.05 not 8.422.05 -r1!
28
- ./build-bin/build 8.422.05
28
+ # Note 8.432.06 not 8.432.06 -r1!
29
+ ./build-bin/build 8.432.06
29
30
```
30
31
31
32
Next, verify the built image matches that version:
32
33
``` bash
33
- openjdk version " 1.8.0_422"
34
- OpenJDK Runtime Environment (IcedTea 3.32.0) (Alpine 8.422.05-r0)
35
- OpenJDK 64-Bit Server VM (build 25.422-b05, mixed mode)
34
+ $ docker run --rm openzipkin/java:test -version
35
+ openjdk version " 1.8.0_432"
36
+ OpenJDK Runtime Environment (IcedTea 3.33.0) (Alpine 8.432.06-r1)
37
+ OpenJDK 64-Bit Server VM (build 25.432-b06, mixed mode)
36
38
```
37
39
38
- To release the image, push a tag matching the arg to ` build-bin/build ` (ex ` 8.422.05 ` ).
40
+ To release the image, push a tag matching the arg to ` build-bin/build ` (ex ` 8.432.06 ` ).
39
41
This triggers a [ GitHub Actions] ( https://github.com/openzipkin/docker-java/actions ) job to push the image.
0 commit comments