Initial commit

This commit is contained in:
2017-08-06 22:37:15 +02:00
commit 79d3e1c7a8
2 changed files with 27 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM haskell:8
MAINTAINER Julian Ospald <hasufell@posteo.de>
RUN cabal update && cabal install hakyll
COPY ./run.sh /usr/local/bin/run.sh
RUN chmod +x /usr/local/bin/run.sh
ENTRYPOINT ["run.sh"]