X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=it%2Fotf.git;a=blobdiff_plain;f=oran-ric-test-head%2FDockerfile;fp=oran-ric-test-head%2FDockerfile;h=86f740d32c2e1b1c4c6bfb40f669bc79b660e765;hp=0000000000000000000000000000000000000000;hb=3d33edd3ef5f8ee668efdf5db6dd670a7b217f23;hpb=392cca7a80edc84824d6521e85b54f693765bd60 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"]