From 175dbf6f9527978840948f85821911f9d0e3d570 Mon Sep 17 00:00:00 2001 From: Chad Redman Date: Wed, 15 Sep 2021 10:43:25 -0400 Subject: [PATCH] Fix CI build error --- ex101/ex101.1.1/Dockerfile | 4 +++- ex201/ex201.end/Dockerfile | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ex101/ex101.1.1/Dockerfile b/ex101/ex101.1.1/Dockerfile index bfd1fdf..d35e0eb 100644 --- a/ex101/ex101.1.1/Dockerfile +++ b/ex101/ex101.1.1/Dockerfile @@ -10,7 +10,9 @@ LABEL author="tier-packaging@internet2.edu " \ ENV USERTOKEN=gte-101.1.1 COPY container_files/seed-data/ /seed-data/ -COPY container_files/conf/ /opt/grouper/grouperWebapp/WEB-INF/classes/ + +# won't work if no files in here, since the folder won't be in git. Uncomment only if there are any property files to override +#COPY container_files/conf/ /opt/grouper/grouperWebapp/WEB-INF/classes/ # && setupFiles; \ diff --git a/ex201/ex201.end/Dockerfile b/ex201/ex201.end/Dockerfile index c20f84a..45d1a44 100644 --- a/ex201/ex201.end/Dockerfile +++ b/ex201/ex201.end/Dockerfile @@ -11,6 +11,9 @@ ENV USERTOKEN=gte-201.end COPY container_files/seed-data/ /seed-data/ ++# won't work if no files in here, since the folder won't be in git. Uncomment only if there are any property files to override ++#COPY container_files/conf/ /opt/grouper/grouperWebapp/WEB-INF/classes/ + # && setupFiles RUN . /usr/local/bin/library.sh \ && prep_conf && prep_finish; \