Rohan Patel | 6ec3508 | 2019-10-31 16:19:21 -0400 | [diff] [blame^] | 1 | FROM python:2.7 |
2 | |||||
3 | RUN python --version | ||||
4 | |||||
5 | ADD pip-requirements.txt pip-requirements.txt | ||||
6 | ADD ric-test-head.py ric-test-head.py | ||||
7 | ADD config.json config.json | ||||
8 | |||||
9 | RUN mkdir -p /otf/logs | ||||
10 | |||||
11 | RUN python -m pip install -r pip-requirements.txt | ||||
12 | |||||
13 | ENTRYPOINT ["python", "ric-test-head.py"] |