added oran ric test head
Change-Id: I7a365e056118cc7500bb18791f7e09ac332294ba
Signed-off-by: Rohan Patel <rp5811@att.com>
diff --git a/oran-ric-test-head/Dockerfile b/oran-ric-test-head/Dockerfile
new file mode 100644
index 0000000..86f740d
--- /dev/null
+++ b/oran-ric-test-head/Dockerfile
@@ -0,0 +1,13 @@
+FROM python:2.7
+
+RUN python --version
+
+ADD pip-requirements.txt pip-requirements.txt
+ADD ric-test-head.py ric-test-head.py
+ADD config.json config.json
+
+RUN mkdir -p /otf/logs
+
+RUN python -m pip install -r pip-requirements.txt
+
+ENTRYPOINT ["python", "ric-test-head.py"]