diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-06-16 13:24:17 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2017-06-16 13:24:17 -0700 |
commit | 43a5d05695c808f83bfb08455bf74a78c6af08fd (patch) | |
tree | 50b7db50c4b8f2f37d10e234e902cb7f0d29d21a | |
parent | ccdc371d848fac0a171e7fff1bcdff5aecf6dace (diff) |
Fix Dockerfile to match change in artifactId
Docker image build fails due to a change in
artifactId in https://gerrit.onap.org/r/#/c/5057/.
This change fixes the Dockerfile to match
the change in artifactId.
Change-Id: Ibf0014e5a00e7d2e668ba87322eacbdf204ee6bd
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
-rw-r--r-- | src/main/docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/docker/Dockerfile b/src/main/docker/Dockerfile index 6ca51ae..bcbc743 100644 --- a/src/main/docker/Dockerfile +++ b/src/main/docker/Dockerfile @@ -15,7 +15,7 @@ RUN export JAVA_HOME # Build up the deployment folder structure RUN mkdir -p $MICRO_HOME -copy swm/package/nix/dist_files/appl/inventory-ui-service/1.0-SNAPSHOT/ $MICRO_HOME/ +copy swm/package/nix/dist_files/appl/sparky-be/1.0-SNAPSHOT/ $MICRO_HOME/ RUN ls -la $MICRO_HOME/ RUN mkdir -p $BIN_HOME COPY *.sh $BIN_HOME/ |