-
I am using Docker and cannot execute pkl DOCKERFILE
But the pkl file does exists in docker
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Are you sure It's also worth noting: because of limitations with the Graal native image toolchain, Pkl cannot offer statically linked (alpine/musl compatible) executables for arm64 Linux. If you do need to target arm64, you'll need to use a glibc-based image (eg. debian) instead. |
Beta Was this translation helpful? Give feedback.
-
Instead of choosing multiple binaries to install in Docker, can we have automatically detectable installation scripts? Almost every tool provides an installation script like this
|
Beta Was this translation helpful? Give feedback.
That's what I'm referring to here:
Pkl's aarch64 binary links glibc, but glibc is not present in the Alpine Linux distro so it cannot run. For amd64, Pkl provides an "alpine" executable that is statically linked (so does not link glibc) that works on Alpine Linux. Due to missing support in Pkl's build toolchain, the equivalent is not available for aarch64.