diff options
author | RehanRaza <muhammad.rehan.raza@est.tech> | 2019-03-06 07:42:15 +0000 |
---|---|---|
committer | RehanRaza <muhammad.rehan.raza@est.tech> | 2019-03-06 07:42:15 +0000 |
commit | 62d36a3601832fdabc4946dfd5038904b8da0e94 (patch) | |
tree | e97e86f1b1ffc287411b1d748780a6dc596c64d9 | |
parent | 2bf13db00a2733d6c56cd8f0c0d26905586bd39f (diff) |
Fix dockerfile-maven-plugin in pom.xml
Change-Id: Id0389e1011fdce9dee4fc0d330973ef34bc2ed6a
Issue-ID: DCAEGEN2-1269
Signed-off-by: RehanRaza <muhammad.rehan.raza@est.tech>
-rw-r--r-- | datafile-app-server/pom.xml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/datafile-app-server/pom.xml b/datafile-app-server/pom.xml index d74889da..e5b87eb7 100644 --- a/datafile-app-server/pom.xml +++ b/datafile-app-server/pom.xml @@ -59,11 +59,17 @@ <version>${dockerfile.maven.version}</version> <configuration> <repository>${onap.nexus.dockerregistry.daily}/${docker.image.name}</repository> + <tag>latest</tag> <dockerfile>${project.build.outputDirectory}/Dockerfile</dockerfile> - <imageTags> - <tag>latest</tag> - </imageTags> </configuration> + <dependencies> + <dependency> + <groupId>com.spotify</groupId> + <artifactId>docker-client</artifactId> + <classifier>shaded</classifier> + <version>8.10.0</version> + </dependency> + </dependencies> <executions> <execution> <id>build-image</id> |