Skip to content

Commit

Permalink
Fix the JAVA_OPTS option for the docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
malacroix committed May 4, 2018
1 parent fa3afac commit 2e31002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sample-isv-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
<skipDocker>false</skipDocker>
<baseImage>openjdk:8u121-jdk</baseImage>
<imageName>docker.appdirectondemand.com/sample-isv/sample-isv</imageName>
<entryPoint>["java", "-server", "-Djava.security.egd=file:/dev/urandom", "-Xms160m", "-Xmx160m", "-XX:MaxMetaspaceSize=96m", "-Xss512k", "$JAVA_OPTS", -jar", "/${project.build.finalName}.jar"]</entryPoint>
<entryPoint>["java", "-server", "-Djava.security.egd=file:/dev/urandom", "-Xms160m", "-Xmx160m", "-XX:MaxMetaspaceSize=96m", "-Xss512k", "$JAVA_OPTS", "-jar", "/${project.build.finalName}.jar"]</entryPoint>
<imageTags>
<imageTag>${project.version}</imageTag>
</imageTags>
Expand Down

0 comments on commit 2e31002

Please sign in to comment.