diff options
author | Phillip Leigh <phillip.leigh@amdocs.com> | 2020-01-21 11:42:20 -0500 |
---|---|---|
committer | Phillip Leigh <phillip.leigh@amdocs.com> | 2020-01-21 11:43:05 -0500 |
commit | fd99e5e88692192a996df4295bcf79cfc3b5c723 (patch) | |
tree | ce97166b3c7c7d77b3ff4e2fa1405c384ee2b993 /search-data-service-app | |
parent | 4352992dcc27871e5b7eb61773b0b50402912adf (diff) |
Fix Docker issue1.6.1
Issue-ID: AAI-2741
Signed-off-by: Phillip Leigh <phillip.leigh@amdocs.com>
Change-Id: I1b43e0a49c995d5c9118cb0c42dbb3630247611a
Diffstat (limited to 'search-data-service-app')
-rw-r--r-- | search-data-service-app/src/main/docker/Dockerfile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/search-data-service-app/src/main/docker/Dockerfile b/search-data-service-app/src/main/docker/Dockerfile index 5284e5b..45ef185 100644 --- a/search-data-service-app/src/main/docker/Dockerfile +++ b/search-data-service-app/src/main/docker/Dockerfile @@ -34,11 +34,9 @@ fi RUN mkdir -p $MICRO_HOME $USERS_HOME /logs WORKDIR $MICRO_HOME RUN mkdir -p $MICRO_HOME/bundleconfig/etc -ADD search-data-service* $MICRO_HOME/ RUN mkdir -p $BIN_HOME -COPY *.sh $BIN_HOME -COPY bundleconfig-local $MICRO_HOME/bundleconfig -COPY bundleconfig-local/etc/logback.xml $MICRO_HOME/bundleconfig/etc +# copy everything from search-data-service-app/target/docker/nexus3.onap.org/10003/onap/search-data-service/latest/build/maven/search-data-service-app +COPY /maven/search-data-service-app/ . RUN chmod -R 755 $BIN_HOME/* $MICRO_HOME/* RUN ln -snf /logs $MICRO_HOME/logs |