hy/Dockerfile

11 lines
174 B
Docker
Raw Permalink Normal View History

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