From 3fc7ad3291f834af4e51802031dfc44c9af8f617 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Thu, 7 Aug 2014 16:43:59 -0700 Subject: [PATCH] Don't use deprecated orchardup/python image Signed-off-by: Ben Firshman --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e7e27260b..d97a9663e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ -FROM orchardup/python:2.7 +FROM ubuntu:14.04 +RUN apt-get update -qq && apt-get install -qy python python-pip python-dev ADD requirements.txt /code/ WORKDIR /code/ RUN pip install -r requirements.txt