Dockerizing multi module Spring Boot application using JIB plugin
问题 I have a Spring boot Application and using spotify plugin to Dockerize my application.So, I will have a Dockerfile like the below one. FROM jdk1.8:latest RUN mkdir -p /opt/servie COPY target/service.war /opt/service ENV JAVA_OPTS="" \ JAVA_ARGS="" CMD java ${JAVA_OPTS} -jar /opt/service/service.war ${JAVA_ARGS} I came across JIB and it looks really cool. But, struggling to get it working. I added the pom entry below. <plugin> <groupId>com.google.cloud.tools</groupId> <artifactId>jib-maven