We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sbt graalvm-native-image:packageBin generates artifacts in target/graalvm-native-image.
sbt graalvm-native-image:packageBin
target/graalvm-native-image
GraalVM native-image output should be
native-image
Produced artifacts: /opt/graalvm/example (executable) /opt/graalvm/example.build_artifacts.txt
sbt graalvm-native-image:packageBin generates no artifacts in target/graalvm-native-image.
GraalVM native-image is
Produced artifacts: /example (executable) /example.build_artifacts.txt
GraalVMNativeImage / containerBuildImage := Some(s"ghcr.io/graalvm/native-image:ol8-java17-22.0.0.2")
1.9.7
1.6.2
5.15.11
"--workdir", "/opt/graalvm"
docker run
graalVMNativeImageDockerOptions
The text was updated successfully, but these errors were encountered:
Specify working directory for graalvm-native-image
09fbe45
Fix sbt#1495
Specify working directory for graalvm-native-image (#1496)
46af6b0
Fix #1495
Successfully merging a pull request may close this issue.
Expected behaviour
sbt graalvm-native-image:packageBin
generates artifacts intarget/graalvm-native-image
.GraalVM
native-image
output should beActual behaviour
sbt graalvm-native-image:packageBin
generates no artifacts intarget/graalvm-native-image
.GraalVM
native-image
isGraalVM docker image
GraalVMNativeImage / containerBuildImage := Some(s"ghcr.io/graalvm/native-image:ol8-java17-22.0.0.2")
Information
1.9.7
1.6.2
5.15.11
)Possible solutions
"--workdir", "/opt/graalvm"
todocker run
argumentsgraalVMNativeImageDockerOptions
for user to be able to specify such options.The text was updated successfully, but these errors were encountered: