From ec8d5aefe7335b18107d20fd9b3560fcd8cd7083 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Sun, 4 May 2014 17:28:08 -0400 Subject: [PATCH] Add dockerfile. --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7ec7336 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# Base image +# +# VERSION 0.1 +FROM debian:unstable +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 + +CMD ["hy"]