-
-
Save kasramp/b53dfb8a2faa1671f06e1819320ecbed 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
<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