docker build fails inside gitlab-runner but works locally : spring boot native compilation with GraalVm – Ubuntu
I made a Dockerfile to build my spring boot project with GraalVm natively; everything went correctly. Here is the Dockerfile FROM ghcr.io/graalvm/graalvm-ce:22.3.1 AS buildnative WORKDIR /app COPY mvnw pom.xml ./ COPY .mvn/ .mvn COPY src ./src RUN ./mvnw clean package…