From d3971df8c6120d748000e4073f83be46f8ddf84e Mon Sep 17 00:00:00 2001 From: Swapnil Kulkarni Date: Wed, 5 Aug 2015 07:34:58 +0000 Subject: [PATCH] Add Centos 7 Dockerfile Change-Id: Ibf0cf51c37323a7f1a3673c06f6a4f33195162ce --- dockerfiles/infra/centos7/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 dockerfiles/infra/centos7/Dockerfile 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