X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=otf-ssh-test-head%2FDockerfile;fp=otf-ssh-test-head%2FDockerfile;h=84e31c12d790ae6d0a1e666ea1fc14ada2a2d426;hb=f49bd1efeaaddd4891c1f329b18d8cfb28b3e75b;hp=0000000000000000000000000000000000000000;hpb=5d8b2580c97e466f9c5a6c78693c24277d94244c;p=it%2Fotf.git diff --git a/otf-ssh-test-head/Dockerfile b/otf-ssh-test-head/Dockerfile new file mode 100644 index 0000000..84e31c1 --- /dev/null +++ b/otf-ssh-test-head/Dockerfile @@ -0,0 +1,17 @@ +FROM python:2.7 + +ARG HTTP_PROXY="localhost:8080" +ARG HTTPS_PROXY="localhost:8080" +ARG http_proxy="localhost:8080" +ARG https_proxy="localhost:8080" + +RUN python --version + +ADD pip-requirements.txt pip-requirements.txt +ADD ssh_test_head.py ssh_test_head.py + +RUN mkdir -p /otf/logs + +RUN python -m pip install -r pip-requirements.txt + +ENTRYPOINT ["python", "ssh_test_head.py"]