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 ea5b44f commit fce77f8
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/info-typer-standalone.jar .

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

ARG git_commit=unknown
Expand Down

0 comments on commit fce77f8

Please sign in to comment.