diff --git a/Dockerfile b/Dockerfile index d97a9663eb2..b79360d93bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ -FROM ubuntu:14.04 -RUN apt-get update -qq && apt-get install -qy python python-pip python-dev +FROM centos:centos6 +RUN yum install -y wget +RUN wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm +RUN rpm -ivh epel-release-6-8.noarch.rpm +RUN yum install -y python-pip + ADD requirements.txt /code/ WORKDIR /code/ RUN pip install -r requirements.txt