diff options
Diffstat (limited to 'policy-jre/debian-slim/pom.xml')
-rw-r--r-- | policy-jre/debian-slim/pom.xml | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/policy-jre/debian-slim/pom.xml b/policy-jre/debian-slim/pom.xml index ad2d85ca..639516b5 100644 --- a/policy-jre/debian-slim/pom.xml +++ b/policy-jre/debian-slim/pom.xml @@ -44,7 +44,7 @@ <version>1.0</version> <executions> <execution> - <phase>pre-clean</phase> + <phase>validate</phase> <goals> <goal>execute</goal> </goals> @@ -63,12 +63,6 @@ } println 'New tag for docker: ' + project.properties['project.docker.latesttag.version']; - if ( "aarch64".equals(System.properties['os.arch']) ) { - project.properties['project.docker.arch'] = "arm64"; - } else { - project.properties['project.docker.arch'] = System.properties['os.arch']; - } - println 'Using arch for docker: ' + project.properties['project.docker.arch']; </source> </configuration> </execution> @@ -85,13 +79,14 @@ <images> <image> - <name>onap/policy-jre-debian:latest-${project.docker.arch}</name> + <name>onap/policy-jre-debian</name> <build> <cleanup>try</cleanup> <dockerFile>Dockerfile</dockerFile> <tags> - <tag>${project.version}-${project.docker.arch}</tag> - <tag>${project.docker.latesttag.version}-${project.docker.arch}</tag> + <tag>${project.version}</tag> + <tag>${project.version}-${maven.build.timestamp}</tag> + <tag>${project.docker.latesttag.version}</tag> </tags> </build> </image> |