@@ -15,25 +15,27 @@ This is an internal base layer primarily used in [zipkin](https://github.com/ope
1515
1616To try the image, run the ` java -version ` command:
1717``` 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)
2122```
2223
2324## Release process
2425Build the ` Dockerfile ` using the current version without the revision classifier from here:
2526 * https://pkgs.alpinelinux.org/packages?name=openjdk8
2627``` 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
2930```
3031
3132Next, verify the built image matches that version:
3233``` 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)
3638```
3739
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 ` ).
3941This triggers a [ GitHub Actions] ( https://github.com/openzipkin/docker-java/actions ) job to push the image.
0 commit comments