-
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 #29 from rwth-acis/1.2.0
1.2.0
- Loading branch information
Showing
30 changed files
with
1,011 additions
and
653 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# | ||
# https://help.github.com/articles/dealing-with-line-endings/ | ||
# | ||
# These are explicitly windows files and should use crlf | ||
*.bat text eol=crlf | ||
|
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,12 +1,23 @@ | ||
/tmp | ||
/node-storage | ||
/log | ||
/export | ||
/mobsos-data-processing/export | ||
/output | ||
/lib | ||
/etc/ivy/ivy.jar | ||
/service | ||
/bin | ||
/bin/* | ||
.DS_Store | ||
.DS_Store* | ||
.DS_Store* | ||
etc/launcher-configuration.ini | ||
/.idea/ | ||
*.iml | ||
# Ignore Gradle project-specific cache directory | ||
.gradle | ||
|
||
# Ignore Gradle build output directory | ||
build | ||
|
||
export | ||
mobsos-data-processing/output | ||
etc/launcher-configuration.ini | ||
app/output/* |
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.
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,17 +1,19 @@ | ||
FROM openjdk:14-jdk-alpine | ||
FROM openjdk:17-jdk-alpine | ||
|
||
ENV LAS2PEER_PORT=9011 | ||
|
||
RUN apk add --update bash mysql-client apache-ant curl && rm -f /var/cache/apk/* | ||
RUN apk add --update bash mysql-client curl && rm -f /var/cache/apk/* | ||
RUN addgroup -g 1000 -S las2peer && \ | ||
adduser -u 1000 -S las2peer -G las2peer | ||
|
||
COPY --chown=las2peer:las2peer . /src | ||
WORKDIR /src | ||
|
||
RUN dos2unix docker-entrypoint.sh | ||
|
||
# run the rest as unprivileged user | ||
USER las2peer | ||
RUN ant jar | ||
RUN chmod +x gradlew && ./gradlew build --exclude-task test | ||
|
||
EXPOSE $LAS2PEER_PORT | ||
ENTRYPOINT ["/src/docker-entrypoint.sh"] |
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
Oops, something went wrong.