aboutsummaryrefslogtreecommitdiffstats
path: root/sanitycheck/dmaap-simulator/Dockerfile
diff options
context:
space:
mode:
authorPawel <pawel.kasperkiewicz@nokia.com>2020-04-22 11:03:54 +0200
committerPawel <pawel.kasperkiewicz@nokia.com>2020-04-22 13:22:59 +0200
commit2fa8397e0c4e6085f0a410be722c56eeba5b0dfe (patch)
treee54a79b80ba8875bce10c788d615bb77bfa568e3 /sanitycheck/dmaap-simulator/Dockerfile
parent25764e61bcaf1b464dbed0898b34cb473db8ceda (diff)
Create local CSITs to verify simulator flow with VES
Issue-ID: INT-1544 Signed-off-by: Pawel <pawel.kasperkiewicz@nokia.com> Change-Id: Id54a6674fef815b91b0a6d10e73d2c8d2c431ef4
Diffstat (limited to 'sanitycheck/dmaap-simulator/Dockerfile')
-rw-r--r--sanitycheck/dmaap-simulator/Dockerfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/sanitycheck/dmaap-simulator/Dockerfile b/sanitycheck/dmaap-simulator/Dockerfile
new file mode 100644
index 0000000..f84cac2
--- /dev/null
+++ b/sanitycheck/dmaap-simulator/Dockerfile
@@ -0,0 +1,7 @@
+FROM python:3
+WORKDIR /application
+COPY ./simulator.py ./
+COPY ./requirements.txt ./
+RUN pip install -r ./requirements.txt
+ENV FLASK_APP=./simulator.py
+CMD ["python", "./simulator.py"]