From a302932c8ff2f44f14fa87ff882b8bcaa30dcd66 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Thu, 16 Oct 2014 17:14:19 +0100 Subject: [PATCH] Use official python repository in Dockerfile Signed-off-by: Ben Firshman --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7761db74..2e6f47f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ -FROM ubuntu:12.10 +FROM python:2.7 MAINTAINER Joffrey F -RUN apt-get update -RUN yes | apt-get install python-pip ADD . /home/docker-py -RUN cd /home/docker-py && pip install . +WORKDIR /home/docker-py +RUN pip install .