Skip to content

Commit

Permalink
Merge pull request #15 from SBU-BMI/develop
Browse files Browse the repository at this point in the history
Update jar loader
  • Loading branch information
ebremer authored Sep 9, 2022
2 parents aa8fca6 + bbb0d39 commit 1e0d484
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM ubuntu:18.04
FROM ubuntu:20.04
LABEL authors="Erich Bremer"
RUN apt-get update
RUN apt-get install -y wget
RUN wget https://download.java.net/java/GA/jdk12.0.2/e482c34c86bd4bf8b56c0b35558996b9/10/GPL/openjdk-12.0.2_linux-x64_bin.tar.gz
RUN tar xvfz openjdk-12.0.2_linux-x64_bin.tar.gz
RUN wget https://download.java.net/openjdk/jdk17/ri/openjdk-17+35_linux-x64_bin.tar.gz
RUN tar xvfz openjdk-17+35_linux-x64_bin.tar.gz
RUN mkdir /usr/java
RUN mv jdk-12.0.2 /usr/java
RUN ln -s /usr/java/jdk-12.0.2/bin/java /usr/bin/java
RUN mv jdk-17 /usr/java
RUN ln -s /usr/java/jdk-17/bin/java /usr/bin/java
COPY run.sh /root
COPY *.jar /usr/bin
COPY imageloader /usr/bin
Expand Down
Binary file renamed QuIPUtils-2.3.4.jar → QuIPUtils-3.0.0.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion imageloader
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
java -cp /usr/bin/QuIPUtils-2.3.4.jar edu.stonybrook.bmi.quiputils.ImageUploader -host http://quip-pathdb "$@"
java -cp /usr/bin/QuIPUtils-3.0.0.jar edu.stonybrook.bmi.quiputils.ImageUploader -host http://quip-pathdb "$@"
2 changes: 1 addition & 1 deletion maploader
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
java -cp /usr/bin/QuIPUtils-2.3.4.jar edu.stonybrook.bmi.quiputils.UploadMaps -host http://quip-pathdb "$@"
java -cp /usr/bin/QuIPUtils-3.0.0.jar edu.stonybrook.bmi.quiputils.UploadMaps -host http://quip-pathdb "$@"

0 comments on commit 1e0d484

Please sign in to comment.