Docker image build fails to explode jar
I'm trying to create a multi-stage Dockerfile FROM openjdk:11.0.7-jre-slim-buster AS build ... additional commands RUN mkdir -p target/exploded && (cd target/exploded; jar -xf ../*.jar) But it fails when trying to explode the .jar file, it is present under the target…