Skip to content

Commit

Permalink
Fix the path to the logback.xml file in the Dockerfile ENTRYPOINT
Browse files Browse the repository at this point in the history
  • Loading branch information
John Wregglesworth committed Oct 16, 2024
1 parent 36ef74c commit 52ad95a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ COPY . /usr/src/app
RUN lein uberjar && \
cp target/clockwork-standalone.jar .

ENTRYPOINT ["clockwork", "-Dorg.terracotta.quartz.skipUpdateCheck=true", "-Dlogback.configurationFile=/etc/iplant/de/logging/clockwork-logging.xml", "-cp", ".:clockwork-standalone.jar", "clockwork.core"]
ENTRYPOINT ["clockwork", "-Dorg.terracotta.quartz.skipUpdateCheck=true", "-Dlogback.configurationFile=/usr/src/app/logback.xml", "-cp", ".:clockwork-standalone.jar", "clockwork.core"]
CMD ["--help"]

ARG git_commit=unknown
Expand Down

0 comments on commit 52ad95a

Please sign in to comment.