An open API service indexing awesome lists of open source software.

https://github.com/zimbatm/ghc-docker


https://github.com/zimbatm/ghc-docker

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

Docker + Ubuntu 12.04 + GHC 7.8.4
=================================

It's all in the title

Usage
-----

This container can be used to build Haskell binaries.

Example of a Dockerfile:
```
FROM zimbatm/ghc
WORKDIR /src
ADD . /src
RUN cabal sandbox init
RUN cabal update && cabal install --only-dependencies --enable-tests -j
```