[14.02.20] Added docker file for building

This commit is contained in:
andyjk15 2020-02-14 16:54:42 +00:00
parent 5222930460
commit 04372347f2

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM openjdk:8-jre-alpine
MAINTAINER Andrew Sotheran <cryptosky.user@gmail.com>
COPY /home/jenkins/workspace/automated-db-gateway/target/cryptosky-db-gateway.jar /home/cryptosky-db-gateway.jar
EXPOSE 9090
CMD ["java", "-jar", "/home/cryptosky-db-gateway.jar"]