Set up repo for multistage builds, in order to work with docker build .
Change-Id: I83a2d67c42dec0ac0dafc036647a9335d0b5cb06
Signed-off-by: William Kurkian <wkurkian@cisco.com>
diff --git a/Dockerfile.dev b/Dockerfile.dev
new file mode 100644
index 0000000..79e6134
--- /dev/null
+++ b/Dockerfile.dev
@@ -0,0 +1,13 @@
+FROM ubuntu:16.04
+RUN apt-get update && \
+ apt-get upgrade -y && \
+ apt-get install -y openjdk-8-jdk curl less kafkacat && \
+ apt-get clean
+
+RUN mkdir /opt/ves-agent && chmod 777 -R /opt/ves-agent
+VOLUME /tmp
+ARG JAR_FILE
+ARG PROPERTIES_FILE
+COPY ${PROPERTIES_FILE} /opt/ves-agent/config.properties
+COPY ${JAR_FILE} app.jar
+ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]