-
Notifications
You must be signed in to change notification settings - Fork 19
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 #94 from dice-group/develop
Develop - release 0.3
- Loading branch information
Showing
49 changed files
with
1,015 additions
and
679 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM openjdk:8u151-jdk | ||
|
||
RUN apt-get update && apt-get install -y netcat | ||
|
||
COPY ./squirrel.web/target/squirrel.web.jar /data/squirrel/squirrel.web.jar | ||
COPY ./squirrel.web/target/squirrel.web.jar.original /data/squirrel/squirrel.web.jar.original | ||
COPY ./squirrel.web/WEB-INF /data/squirrel/WEB-INF | ||
WORKDIR /data/squirrel | ||
|
||
#ADD entrypoint.sh /entrypoint.sh | ||
#RUN chmod +x /entrypoint.sh | ||
|
||
VOLUME ["/var/squirrel/data"] | ||
|
||
CMD java -cp squirrel.web.jar:. com.squirrel.Application | ||
|
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
echo "Building Squirrel..." | ||
cd squirrel.web-api | ||
mvn clean install | ||
cd .. | ||
mvn clean install -DskipTests | ||
clear | ||
echo "Creating Frontier image..." | ||
docker build -f Dockerfile.frontier -t squirrel.frontier . | ||
echo "Creating Worker image..." | ||
docker build -f Dockerfile.worker -t squirrel.worker . | ||
echo "Creating Web image..." | ||
docker build -f Dockerfile.web -t squirrel.web . | ||
clear | ||
echo "Finished" |
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,3 +1,3 @@ | ||
https://dbpedia.org/resource/New_York | ||
https://dbpedia.org/resource/Moscow | ||
https://dbpedia.org/resource/Brazil | ||
https://dbpedia.org/resource/China |
Oops, something went wrong.