diff --git a/dockerfiles/infra/centos7/Dockerfile b/dockerfiles/infra/centos7/Dockerfile new file mode 100644 index 0000000..aefa840 --- /dev/null +++ b/dockerfiles/infra/centos7/Dockerfile @@ -0,0 +1,9 @@ +FROM centos:7 +MAINTAINER OpenStack + +RUN yum -y update +RUN yum -y groupinstall 'Development Tools' +RUN yum -y install wget git python + +RUN wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py && rm get-pip.py +RUN pip install -U setuptools