First commit. Taken from open source branch of internal sample-tracking application.

This commit is contained in:
Robert Schiemann
2023-03-08 10:11:42 -07:00
parent fa491f63de
commit fe0946c53a
220 changed files with 15808 additions and 0 deletions

14
Dockerfile Executable file
View File

@@ -0,0 +1,14 @@
FROM openjdk:11
LABEL maintainer="rschiemann@parkerici.org"
EXPOSE 8989
WORKDIR /sample-tracking
COPY resources resources
COPY target/sample-tracking-standalone.jar .
# $PORT didn't work
# get config from kub env vars
ENTRYPOINT ["java", "-jar", "sample-tracking-standalone.jar", "server", "-p", "8989"]