Skip to content

Commit

Permalink
Update Dockerfile to use the "python:3" base image, which simplifies …
Browse files Browse the repository at this point in the history
…things
tianon committed Jul 10, 2014
1 parent fa1c5d8 commit c8c154f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit c8c154f

Please sign in to comment.