Update Dockerfile to use the "python:3" base image, which simplifies things

This commit is contained in:
Tianon Gravi 2014-07-10 13:06:23 -06:00
parent fa1c5d851e
commit c8c154f725
1 changed files with 3 additions and 4 deletions

View File

@ -1,11 +1,10 @@
# Base image
#
# VERSION 0.1
FROM debian:unstable
# VERSION 0.2
FROM python:3
MAINTAINER Paul R. Tagliamonte <paultag@debian.org>
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"]