You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run ./gradlew :function-native:buildNativeLambda -Pmicronaut.runtime=lambda_provided
It fails with:
Step 7/36 : RUN /usr/lib/graalvm/bin/gu install native-image
---> Running in 260a2deec639
/bin/sh: /usr/lib/graalvm/bin/gu: No such file or directory
> Task :function-native:dockerBuildNative FAILED
FAILURE: Build failed with an exception.
I assume that it is because gu is gone in GraalVM for Java 21 and we still do:
RUN /usr/lib/graalvm/bin/gu install native-image
in the docker file
The text was updated successfully, but these errors were encountered:
Steps to reproduce
Clone repository https://github.com/micronaut-projects/micronaut-lambda-todo branch
micronaut-4-java-21
.Run
./gradlew :function-native:buildNativeLambda -Pmicronaut.runtime=lambda_provided
It fails with:
I assume that it is because
gu
is gone in GraalVM for Java 21 and we still do:in the docker file
The text was updated successfully, but these errors were encountered: