Dockerfile for reporting module updated 25/36425/4
authorsaksham115 <saksham.agrawal@research.iiit.ac.in>
Fri, 23 Jun 2017 10:05:49 +0000 (15:35 +0530)
committerSaksham Agrawal <saksham.agrawal@research.iiit.ac.in>
Thu, 6 Jul 2017 13:49:29 +0000 (13:49 +0000)
JIRA: STORPERF-162

Change-Id: If012cf4ce2c03851c2ceb3744dd3a2f366cb65d5
Signed-off-by: saksham115 <saksham.agrawal@research.iiit.ac.in>
reporting/docker/Dockerfile
reporting/docker/app.py [new file with mode: 0644]
reporting/docker/requirements.txt [new file with mode: 0644]

index c748254..541845c 100644 (file)
@@ -15,7 +15,7 @@
 ##
 
 
-FROM nginx:1.13.1-alpine
+FROM alpine:3.1
 MAINTAINER Mark Beierl <mark.beierl@dell.com>
 LABEL version="0.1" description="OPNFV Storperf Reporting Container"
 
@@ -24,3 +24,11 @@ ARG BRANCH=master
 ENV repos_dir /home/opnfv/repos
 WORKDIR /home/opnfv
 
+RUN apk add --update python py-pip
+
+COPY . /app
+WORKDIR /app
+RUN pip install -r requirements.txt
+ENTRYPOINT ["python"]
+CMD ["./src/app.py"]
+EXPOSE 5000
\ No newline at end of file
diff --git a/reporting/docker/app.py b/reporting/docker/app.py
new file mode 100644 (file)
index 0000000..8f1c058
--- /dev/null
@@ -0,0 +1,9 @@
+from flask import Flask
+app = Flask(__name__)
+
+@app.route('/')
+def hello_world():
+    return 'Hello World'
+
+if __name__ == '__main__':
+   app.run(debug=True, host='0.0.0.0', threaded=True)
diff --git a/reporting/docker/requirements.txt b/reporting/docker/requirements.txt
new file mode 100644 (file)
index 0000000..43e625b
--- /dev/null
@@ -0,0 +1 @@
+Flask==0.12.2
\ No newline at end of file