From 190892e53b47d4a44e233c344a93004fd81e3041 Mon Sep 17 00:00:00 2001 From: wdouglascampbell Date: Fri, 26 Apr 2019 12:09:52 +0800 Subject: [PATCH] Fix CAS config and services copy Previously I had submitted a pull request on this issue. I am not sure if there was an error in my original commit or something has changed significantly in the build process but the result is that the etc/cas/config and etc/cas/services directories were not being copied to their default locations of /etc/cas. This change is working for me. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e53608f..5dd0d9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,8 +51,7 @@ RUN cd / \ COPY thekeystore /etc/cas/ COPY bin/*.* cas-overlay/bin/ -COPY etc/cas/config/*.* /cas-overlay/etc/cas/config/ -COPY etc/cas/services/*.* /cas-overlay/etc/cas/services/ +COPY etc/cas /etc/cas RUN chmod -R 750 cas-overlay/bin \ && chmod 750 cas-overlay/mvnw \