From 54b914c05804ea70f7b15e0f0f38ebb53efb3327 Mon Sep 17 00:00:00 2001 From: Aanand Prasad Date: Tue, 12 Aug 2014 15:01:41 -0700 Subject: [PATCH] Build on CentOS 6 Hopefully a solution to #102. Signed-off-by: Aanand Prasad --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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