Skip to content

Instantly share code, notes, and snippets.

@egisatoshi
Created November 17, 2014 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save egisatoshi/24e2e18a9e48ae5434e8 to your computer and use it in GitHub Desktop.
Save egisatoshi/24e2e18a9e48ae5434e8 to your computer and use it in GitHub Desktop.
Dockerfile for Egison
FROM phusion/baseimage:latest
MAINTAINER Satoshi Egi
RUN apt-get update
RUN apt-get -y install libncurses-dev
RUN apt-get -y install haskell-platform
RUN cabal update
RUN cabal install egison
ENV PATH /root/.cabal/bin:$PATH
ENTRYPOINT ["egison"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment