Advertisement
ogre_x

Untitled

Oct 20th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.08 KB | None | 0 0
  1. <profile>
  2.       <id>docker</id>
  3.       <build>
  4.         <plugins>
  5.           <plugin>
  6.             <groupId>com.spotify</groupId>
  7.             <artifactId>docker-maven-plugin</artifactId>
  8.             <version>0.4.13</version>
  9.             <executions>
  10.               <execution>
  11.                 <id>build-image</id>
  12.                 <phase>package</phase>
  13.                 <goals>
  14.                   <goal>build</goal>
  15.                 </goals>
  16.               </execution>
  17.             </executions>
  18.             <configuration>
  19.               <imageName>${docker.image.prefix}/${project.artifactId}</imageName>
  20.               <dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>
  21.               <resources>
  22.                 <resource>
  23.                   <targetPath>/</targetPath>
  24.                   <directory>${project.build.directory}</directory>
  25.                   <include>${project.build.finalName}-exec.jar</include>
  26.                 </resource>
  27.               </resources>
  28.             </configuration>
  29.           </plugin>
  30.         </plugins>
  31.       </build>
  32.     </profile>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement