diff options
author | Daniel Silverthorn <daniel.silverthorn@amdocs.com> | 2018-05-30 13:44:20 -0400 |
---|---|---|
committer | Michael Arrastia <MArrasti@amdocs.com> | 2018-05-31 17:20:51 +0100 |
commit | e0aa5dc8dfdd3eaebdbdfb8e8771836c2b251ba6 (patch) | |
tree | 636b92c19d7f01255db99176c5730f531f3bbe74 /src/main/docker/Dockerfile | |
parent | 393021dc6d5ee3d34fff103f65aaacb8dc86414c (diff) |
Add gizmo logback in local
This change is cherry-picked from master to resolve issue AAI-1189.
Change-Id: I024dd5aaba04f15169e19be008a6aa7c88fbc706
Issue-ID: AAI-1180
Signed-off-by: Daniel Silverthorn <daniel.silverthorn@amdocs.com>
Diffstat (limited to 'src/main/docker/Dockerfile')
-rw-r--r-- | src/main/docker/Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/docker/Dockerfile b/src/main/docker/Dockerfile index 10c4dd0..c99d763 100644 --- a/src/main/docker/Dockerfile +++ b/src/main/docker/Dockerfile @@ -15,9 +15,12 @@ RUN export JAVA_HOME # Build up the deployment folder structure RUN mkdir -p $MICRO_HOME +RUN mkdir -p $MICRO_HOME/bundleconfig/etc COPY gizmo.jar $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 RUN chmod 755 $BIN_HOME/* RUN ln -s /logs $MICRO_HOME/logs |