docker-maven-plugin
docker-maven-plugin copied to clipboard
How to building Docker Image in Maven Project of multi-module
project structure: --parent ----subA ------pom.xml ----subB ------pom.xml ----pom.xml
How config above project with dockerfile-maven-plugin to building Docker Image?
bind the lifecycle to package:
<executions>
<execution>
<id>build-image</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.