Skip to content

Commit

Permalink
Fix: fix jar name in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tiadams committed Oct 9, 2023
1 parent 91c607b commit fcaa0e2
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 @@ -2,7 +2,7 @@ FROM docker.io/library/openjdk:alpine

LABEL org.opencontainers.image.authors="[email protected]"

ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom", "-jar", "/usr/share/sam/sam-api.jar" , "--its.enable=true", "--its.concepts=/usr/share/sam/terminologies/key2aimed-concepts.tsv", "--its.terminologies=/usr/share/sam/terminologies/key2aimed-terminologies.tsv"]
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom", "-jar", "/usr/share/sam/sam.jar" , "--its.enable=true", "--its.concepts=/usr/share/sam/terminologies/key2aimed-concepts.tsv", "--its.terminologies=/usr/share/sam/terminologies/key2aimed-terminologies.tsv"]
EXPOSE 8080/tcp
ENV JAVA_TOOL_OPTIONS="$JAVA_TOOL_OPTIONS -Xmx16g"
ENV JAVA_TOOL_OPTIONS="$JAVA_TOOL_OPTIONS -XX:+UnlockExperimentalVMOptions"
Expand Down

0 comments on commit fcaa0e2

Please sign in to comment.