-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from BioPAX/using-paxtools6
Validator v6 using paxtools v6
- Loading branch information
Showing
57 changed files
with
753 additions
and
25,994 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
FROM openjdk:8-jdk-alpine | ||
FROM eclipse-temurin:latest | ||
VOLUME /tmp | ||
ARG JAR_FILE | ||
COPY ${JAR_FILE} app.jar | ||
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom", "-Xmx1g", "-jar","/app.jar"] | ||
ARG APP_JAR | ||
ARG AGENT_JAR | ||
COPY ${APP_JAR} app.war | ||
COPY ${AGENT_JAR} agent.jar | ||
ENV JDK_JAVA_OPTIONS="--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.lang.reflect=ALL-UNNAMED" | ||
ENTRYPOINT ["java", "-server", "-javaagent:agent.jar", \ | ||
"-Djava.security.egd=file:/dev/./urandom", "-Xmx4g", "-Dfile.encoding=UTF-8", "-jar", "app.war", "--server.port=8080"] | ||
EXPOSE 8080 |
Oops, something went wrong.