You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
211 B

  1. FROM haskell:8
  2. MAINTAINER Julian Ospald <hasufell@posteo.de>
  3. RUN cabal update && cabal install hakyll
  4. COPY ./run.sh /usr/local/bin/run.sh
  5. RUN chmod +x /usr/local/bin/run.sh
  6. EXPOSE 8000
  7. ENTRYPOINT ["run.sh"]