BAEL-1779 deploy springboot app to azure

This commit is contained in:
aiet
2018-05-23 16:46:55 +08:00
parent 4c333aeeb3
commit 94f50c2175
10 changed files with 311 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM frolvlad/alpine-oraclejdk8:slim
VOLUME /tmp
ADD azure-0.1.jar app.jar
RUN sh -c 'touch /app.jar'
EXPOSE 8080
ENTRYPOINT [ "sh", "-c", "java -Djava.security.egd=file:/dev/./urandom -jar /app.jar" ]