blob: 86f740d32c2e1b1c4c6bfb40f669bc79b660e765 [file] [log] [blame]
Rohan Patel6ec35082019-10-31 16:19:21 -04001FROM python:2.7
2
3RUN python --version
4
5ADD pip-requirements.txt pip-requirements.txt
6ADD ric-test-head.py ric-test-head.py
7ADD config.json config.json
8
9RUN mkdir -p /otf/logs
10
11RUN python -m pip install -r pip-requirements.txt
12
13ENTRYPOINT ["python", "ric-test-head.py"]