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 abd0468 commit d81ed33
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 do clean, uberjar && \
cp target/data-info-standalone.jar .

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

ARG git_commit=unknown
Expand Down

0 comments on commit d81ed33

Please sign in to comment.