Fork me on GitHub
#babashka
<
2024-07-12
>
borkdude19:07:42

do you mean the Dockerfile?

RAJKUMAR19:07:15

I mean how to find graalvm version of particular bb-docker(example https://hub.docker.com/layers/babashka/babashka/1.3.191-alpine)

borkdude20:07:29

you mean the graalvm version which was used to produce the bb binary?

borkdude20:07:10

you can find out by doing this:

$ bb -e '(System/getProperty "java.vm.version")'
"22.0.1+8"
The binaries aren't entirely built using the Dockerfile though. They are built on CircleCI and then copied, so the Dockerfile isn't really useful for reproducing. The Dockerfile on the root of the repo shows a full reproduction which should work locally, but this isn't actually used for producing the released bb binaries

RAJKUMAR20:07:45

yeap. I thought about that. Thanks @U04V15CAJ