From 396a9099b14e90fef3ed52e25806ee4fbe4f7a07 Mon Sep 17 00:00:00 2001 From: John Wregglesworth Date: Wed, 16 Oct 2024 15:31:28 -0700 Subject: [PATCH] Fix the path to the logback.xml file in the Dockerfile ENTRYPOINT --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e7c2be5..614d880 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ COPY ui/ui.xml resources/ RUN lein uberjar RUN cp target/kifshare-standalone.jar . -ENTRYPOINT ["kifshare", "-Dlogback.configurationFile=/etc/iplant/de/logging/kifshare-logging.xml", "-cp", ".:resources:kifshare-standalone.jar", "kifshare.core"] +ENTRYPOINT ["kifshare", "-Dlogback.configurationFile=/usr/src/app/logback.xml", "-cp", ".:resources:kifshare-standalone.jar", "kifshare.core"] CMD ["--help"] ARG git_commit=unknown