X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=otf-robot-test-head%2FDockerfile;fp=otf-robot-test-head%2FDockerfile;h=7358b2104e35f923c2182b9316b1484604de27c0;hb=f49bd1efeaaddd4891c1f329b18d8cfb28b3e75b;hp=0000000000000000000000000000000000000000;hpb=5d8b2580c97e466f9c5a6c78693c24277d94244c;p=it%2Fotf.git diff --git a/otf-robot-test-head/Dockerfile b/otf-robot-test-head/Dockerfile new file mode 100644 index 0000000..7358b21 --- /dev/null +++ b/otf-robot-test-head/Dockerfile @@ -0,0 +1,18 @@ +FROM python:2.7 + +ARG HTTP_PROXY="http://localhost:8080" +ARG HTTPS_PROXY="http://localhost:8080" +ARG http_proxy="http://localhost:8080" +ARG https_proxy="http://localhost:8080" + +RUN python --version + +ADD pip-requirements.txt pip-requirements.txt +ADD run.py run.py +ADD app app + +RUN python -m pip install -r pip-requirements.txt + +RUN mkdir -p /otf/logs + +ENTRYPOINT ["python", "run.py"] \ No newline at end of file