Add Centos 7 Dockerfile

Change-Id: Ibf0cf51c37323a7f1a3673c06f6a4f33195162ce
This commit is contained in:
Swapnil Kulkarni 2015-08-05 07:34:58 +00:00
parent a02c3f7742
commit d3971df8c6
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
FROM centos:7
MAINTAINER OpenStack <openstack-dev@lists.openstack.org>
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