-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
203 changed files
with
4,407 additions
and
7,565 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,21 +1,23 @@ | ||
*.class | ||
*.dump | ||
.classpath | ||
.gradle/ | ||
.idea/ | ||
.settings/ | ||
.classpath | ||
.project | ||
/build/ | ||
/target/ | ||
src/main/resources/edu/ucsd/sbrg/identifiersOrgRegistry/IdentifiersOrg-Registry.json | ||
/src/scripts/ModelPolisherTemplate.* | ||
ModelPolisher.iml | ||
jsbml.log | ||
.settings/ | ||
/.DS_Store | ||
/.vscode/ | ||
/bin | ||
/build/ | ||
/gradle | ||
/lib | ||
/minimalSysBio.xml | ||
/model_polisher.log | ||
/out | ||
/src/main/resources/edu/ucsd/sbrg/example_models/output | ||
/src/scripts/ModelPolisherTemplate.* | ||
/src/test/resources/edu/ucsd/sbrg/bigg/e_coli_core.zip | ||
*.class | ||
/bin | ||
/.vscode/ | ||
*.dump | ||
/target/ | ||
ModelPolisher.iml | ||
jsbml.log | ||
src/main/resources/edu/ucsd/sbrg/identifiersOrgRegistry/IdentifiersOrg-Registry.json |
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,15 +1,11 @@ | ||
FROM openjdk:11-slim | ||
FROM openjdk:17-slim | ||
|
||
# Set the maintainer email for the image | ||
LABEL maintainer="[email protected]" | ||
LABEL maintainer="[email protected]" | ||
|
||
# Copy the ModelPolisher jar file into the root directory of the image | ||
COPY ModelPolisher-2.1.jar / | ||
|
||
# Create necessary directories for Java preferences and set permissions | ||
# Reference: https://stackoverflow.com/a/23961144 | ||
RUN mkdir -p /.java/.systemPrefs && mkdir /.java/.userPrefs && chmod -R 777 /.java | ||
|
||
# Set the container to run the ModelPolisher jar file as the default executable | ||
ENTRYPOINT ["java", "-jar", "/ModelPolisher-2.1.jar"] | ||
|
||
|
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.