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 e0ec9af commit 057cc21
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 @@ -19,7 +19,7 @@ COPY . /usr/src/app
RUN lein do clean, uberjar && \
cp target/dewey-standalone.jar .

ENTRYPOINT ["dewey", "-Dlogback.configurationFile=/etc/iplant/de/logging/dewey-logging.xml", "-cp", ".:dewey-standalone.jar", "dewey.core"]
ENTRYPOINT ["dewey", "-Dlogback.configurationFile=/usr/src/app/logback.xml", "-cp", ".:dewey-standalone.jar", "dewey.core"]
CMD ["--help"]

ARG git_commit=unknown
Expand Down

0 comments on commit 057cc21

Please sign in to comment.