BAEL-4546: sample app to show-case docker compose with the latest image

This commit is contained in:
Swapan Pramanick
2021-10-30 01:18:37 +02:00
parent 2adb9e22a5
commit c06df0225c
12 changed files with 601 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
FROM openjdk:11
COPY target/docker-sample-app-0.0.1.jar app.jar
ENTRYPOINT ["java","-jar","/app.jar"]