Skip to content

Commit

Permalink
Fixed entry point of dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Aklakan committed Nov 16, 2023
1 parent d284729 commit c6edd5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker-from-uberjar/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ ADD lsq-pkg-uberjar-cli-*-jar-with-dependencies.jar "$HOME/lsq-cli.jar"
WORKDIR /data
VOLUME [ "/data" ]

ENTRYPOINT ["java","-jar","$HOME/lsq-cli.jar"]
# XXX $HOME Does not get expanded in the entry point
ENTRYPOINT ["java","-jar","/lsq/lsq-cli.jar"]
CMD ["-h"]

# Usage:
Expand Down

0 comments on commit c6edd5f

Please sign in to comment.