Hello,
I am currently working on converting a Quarkus native image build into a GraalVM image using Dagger. The process involves building the native executable first and subsequently copying it over to a runtime image.
When executing ./mvnw package -Dnative, an executable file is generated with a name similar to app-SNAPSHOT-1.0.0-runner. However, the exact name of this file can vary.
How could I copy this executable with an unknown name over to the runtime image? In the Docker file for GraalVM, this issue is addressed with the command COPY target/*-runner /work/application.
Is there a comparable solution in Dagger? I noticed that with directory, I can set a filter, but this option doesn't seem to be available with file.
Thank you very much