From c8c154f725fd31eadb5d907463fa0efcd557786d Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 10 Jul 2014 13:06:23 -0600 Subject: [PATCH] Update Dockerfile to use the "python:3" base image, which simplifies things --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ec7336..6e60ac8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,10 @@ # Base image # -# VERSION 0.1 -FROM debian:unstable +# VERSION 0.2 +FROM python:3 MAINTAINER Paul R. Tagliamonte -RUN apt-get update && apt-get install -y python3.4 python3-pip ADD . /opt/hylang/hy -RUN python3.4 /usr/bin/pip3 install -e /opt/hylang/hy +RUN pip3 install -e /opt/hylang/hy CMD ["hy"]