If I create a quarkus native image, only the files directly inside the META-INF/resources directory are included not the sub-directories and its files.
- Start native build in docker:
mvn package -Pnative -Dnative-image.docker-build=true
- Build a docker image:
docker build -f src/main/docker/Dockerfile.native -t quarkus/subresource-showcase .
- Run the docker image:
docker run -i --rm -p 8080:8080 --name subresource-showcase quarkus/subresource-showcase
- Open Browser with URL http://localhost:8080/subdir/index.html and see that an error occurs
- Open pom.xml and uncomment the additional build arguments (-H:IncludeResources=META-INF/resources/.*)
- Rebuild, start docker image (see reproduce bug)