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 17, 2024
1 parent 3557142 commit a1073b7
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/metadata-standalone.jar .

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

ARG git_commit=unknown
Expand Down

0 comments on commit a1073b7

Please sign in to comment.