blob: 86f740d32c2e1b1c4c6bfb40f669bc79b660e765 [file] [log] [blame]
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"]