Skip to content

Instantly share code, notes, and snippets.

@kasramp

kasramp/pom.xml Secret

Last active July 11, 2019 05:43
Show Gist options
  • Save kasramp/b53dfb8a2faa1671f06e1819320ecbed to your computer and use it in GitHub Desktop.
Save kasramp/b53dfb8a2faa1671f06e1819320ecbed to your computer and use it in GitHub Desktop.
<build>
<plugins>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<version>1.4.10</version>
<executions>
<execution>
<id>tag-latest</id>
<goals>
<goal>build</goal>
<goal>tag</goal>
<goal>push</goal>
</goals>
<configuration>
<tag>latest</tag>
</configuration>
</execution>
<execution>
<id>tag-version</id>
<goals>
<goal>build</goal>
<goal>tag</goal>
<goal>push</goal>
</goals>
<configuration>
<tag>${project.version}</tag>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment