First commit. Taken from open source branch of internal sample-tracking application.
This commit is contained in:
14
Dockerfile
Executable file
14
Dockerfile
Executable 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"]
|
||||
Reference in New Issue
Block a user