rename haskell repository and tweaks
This commit is contained in:
parent
656e6d37ba
commit
5ace0d632c
|
|
@ -10,22 +10,21 @@ A large number of production-quality Haskell libraries are available from [Hacka
|
||||||
|
|
||||||
## About this image
|
## About this image
|
||||||
|
|
||||||
This image ships a minimal Haskell toolchain with the following packages:
|
This image ships a minimal Haskell toolchain with the following packages from the [hvr PPA](https://launchpad.net/~hvr/+archive/ubuntu/ghc):
|
||||||
|
|
||||||
- `ghc`
|
- `ghc`
|
||||||
- `alex`
|
- `alex`
|
||||||
- `cabal-install`
|
- `cabal-install`
|
||||||
- `happy`
|
- `happy`
|
||||||
|
|
||||||
|
The most recent GHC release in the 7.8 series is also available, though no longer receiving updates from upstream, so users are encouraged to upgrade to 7.10.
|
||||||
|
|
||||||
## How to use this image
|
## How to use this image
|
||||||
|
|
||||||
Start an interactive interpreter session with `ghci`:
|
Start an interactive interpreter session with `ghci`:
|
||||||
|
|
||||||
$ docker run -it --rm haskell:7.8
|
$ docker run -it --rm haskell:7.10
|
||||||
GHCi, version 7.8.3: http://www.haskell.org/ghc/ :? for help
|
GHCi, version 7.10.1: http://www.haskell.org/ghc/ :? for help
|
||||||
Loading package ghc-prim ... linking ... done.
|
|
||||||
Loading package integer-gmp ... linking ... done.
|
|
||||||
Loading package base ... linking ... done.
|
|
||||||
Prelude>
|
Prelude>
|
||||||
|
|
||||||
Dockerize a [Hackage](http://hackage.haskell.org) app with a Dockerfile inheriting from the base image:
|
Dockerize a [Hackage](http://hackage.haskell.org) app with a Dockerfile inheriting from the base image:
|
||||||
|
|
@ -61,4 +60,4 @@ Iteratively develop then ship a Haskell app with a Dockerfile utilizing the buil
|
||||||
|
|
||||||
### Examples
|
### Examples
|
||||||
|
|
||||||
See the application snippet above in more detail in the [example snap application](https://github.com/darinmorrison/docker-haskell/tree/master/examples/7.8.3/snap).
|
See the application snippet above in more detail in the [example snap application](https://github.com/freebroccolo/docker-haskell/tree/master/examples/7.8.3/snap).
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ declare -A otherRepos=(
|
||||||
[docker-dev]='https://github.com/docker/docker'
|
[docker-dev]='https://github.com/docker/docker'
|
||||||
[fedora]='https://github.com/lsm5/docker-brew-fedora'
|
[fedora]='https://github.com/lsm5/docker-brew-fedora'
|
||||||
[glassfish]='https://github.com/aws/aws-eb-glassfish'
|
[glassfish]='https://github.com/aws/aws-eb-glassfish'
|
||||||
[haskell]='https://github.com/darinmorrison/docker-haskell'
|
[haskell]='https://github.com/freebroccolo/docker-haskell'
|
||||||
[hipache]='https://github.com/dotcloud/hipache'
|
[hipache]='https://github.com/dotcloud/hipache'
|
||||||
[hylang]='https://github.com/hylang/hy'
|
[hylang]='https://github.com/hylang/hy'
|
||||||
[iojs]='https://github.com/iojs/docker-iojs'
|
[iojs]='https://github.com/iojs/docker-iojs'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue