File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ ADD pom.xml LICENSE.md NOTICE.md README.md /usr/src/app/
2929# add src/ (which often change)
3030ADD src /usr/src/app/src
3131# Skip tests while building as that requires a local mongodb
32- RUN mvn clean package -DskipTests && cp target/cwlvisualiser -*.jar /usr/lib/cwlvisualizer .jar && rm -rf target
32+ RUN mvn clean package -DskipTests && cp target/cwlviewer -*.jar /usr/lib/cwlviewer .jar && rm -rf target
3333
3434# NOTE: ~/.m2/repository is a VOLUME and so will be deleted anyway
3535# This also means that every docker build downloads all of it..
@@ -41,4 +41,4 @@ EXPOSE 8080
4141# Expects mongodb on port 27017
4242ENV SPRING_DATA_MONGODB_HOST=mongo
4343ENV SPRING_DATA_MONGODB_PORT=27017
44- CMD ["/usr/bin/java" , "-jar" , "/usr/lib/cwlvisualizer .jar" ]
44+ CMD ["/usr/bin/java" , "-jar" , "/usr/lib/cwlviewer .jar" ]
Original file line number Diff line number Diff line change @@ -131,11 +131,11 @@ You can create an executable JAR file by using:
131131
132132Afterwards, run:
133133
134- java -jar target/cwlvisualizer *.jar
134+ java -jar target/cwlviewer *.jar
135135
136136(The exact filename will vary per version)
137137
138- Once CWL Visualizer is running, you should see log output somewhat like:
138+ Once CWL Viewer is running, you should see log output somewhat like:
139139
140140```
141141()..)
You can’t perform that action at this time.
0 commit comments