X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=resources%2Ftest_containers%2Fhttp-traffic-gen%2FDockerfile;fp=resources%2Ftest_containers%2Fhttp-traffic-gen%2FDockerfile;h=16c7add3b1148a848a503e09f36c5705ba3c2756;hb=af5eb3ff36b92ab1d9c156ffa0391eadc73eb6ba;hp=0000000000000000000000000000000000000000;hpb=025a45508d009db84c34076fb4a668f712628d6d;p=ta%2Fcloudtaf.git diff --git a/resources/test_containers/http-traffic-gen/Dockerfile b/resources/test_containers/http-traffic-gen/Dockerfile new file mode 100644 index 0000000..16c7add --- /dev/null +++ b/resources/test_containers/http-traffic-gen/Dockerfile @@ -0,0 +1,10 @@ +FROM alpine:3.7 +MAINTAINER Tamas Kopcso + +RUN apk update +RUN apk add python +RUN apk add py-pip +RUN pip install requests +RUN mkdir /etc/http_traffic_gen +COPY http_traffic_gen.py /etc/http_traffic_gen/http_traffic_gen.py +CMD ["python", "/etc/http_traffic_gen/http_traffic_gen.py"]