Supports CTR section of the dataflow.spring.io

resolves another part of #180

It is associated with PR https://github.com/spring-io/dataflow.spring.io/pull/188
This commit is contained in:
Glenn Renfro
2020-01-13 16:54:58 -05:00
committed by Mark Pollack
parent f205626b4f
commit 158f455ffc
14 changed files with 881 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM java:8-alpine
ARG JAR_FILE
ADD target/${JAR_FILE} taskapp-1.0.0.BUILD-SNAPSHOT.jar
ENTRYPOINT ["java", "-jar", "/taskapp-1.0.0.BUILD-SNAPSHOT.jar"]