hy/Dockerfile

11 lines
174 B
Docker
Raw Normal View History

2014-05-04 23:28:08 +02:00
# Base image
#
# VERSION 0.2
FROM python:3
2014-05-04 23:28:08 +02:00
MAINTAINER Paul R. Tagliamonte <paultag@debian.org>
ADD . /opt/hylang/hy
RUN pip3 install -e /opt/hylang/hy
2014-05-04 23:28:08 +02:00
CMD ["hy"]