Created
July 23, 2016 15:34
-
-
Save agibsonccc/bf17f10f9e9f7d91541299b90087d67e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>com.spotify</groupId> | |
<artifactId>docker-maven-plugin</artifactId> | |
<version>0.4.11</version> | |
<configuration> | |
<dockerDirectory>../docker</dockerDirectory> | |
<imageName>${artifactId}</imageName> | |
<!-- copy the service's jar file from target into the root directory of the image --> | |
<resources> | |
<resource> | |
<targetPath>/lib</targetPath> | |
<directory>${project.build.directory}</directory> | |
<includes> | |
<include> | |
${project.build.finalName}.jar | |
</include> | |
</includes> | |
</resource> | |
<resource> | |
<targetPath>/src</targetPath> | |
<directory>./src</directory> | |
<includes> | |
</includes> | |
</resource> | |
<resource> | |
<targetPath>/</targetPath> | |
<directory>.</directory> | |
<includes> | |
<include>pom.xml</include> | |
</includes> | |
</resource> | |
</resources> | |
</configuration> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment