From 676733ed6c32f3a000212c5f2c947b5908a27ec4 Mon Sep 17 00:00:00 2001 From: Peter Salvatore Date: Tue, 14 Feb 2017 10:27:59 -0500 Subject: [PATCH] Update haskell, minor tweaks. --- haskell/content.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/haskell/content.md b/haskell/content.md index 91056c814..0bddff62c 100644 --- a/haskell/content.md +++ b/haskell/content.md @@ -17,7 +17,7 @@ This image ships a minimal Haskell toolchain with the following packages from th - `cabal-install` - `happy` -As of `7.10.3`, the `stack` tool is included via FPComplete's Debian repository. +As of `7.10.3`, the `stack` tool is included. Note: The GHC developers do not support legacy release branches (i.e. `7.8.x`). While older GHC release tags are available in this DockerHub repository, only the latest stable release (or upcoming release candidates) will be shown in the "Supported tags ..." section at the top of this page. @@ -26,15 +26,15 @@ Note: The GHC developers do not support legacy release branches (i.e. `7.8.x`). Start an interactive interpreter session with `ghci`: ```console -$ docker run -it --rm haskell:7.10.3 -GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help +$ docker run -it --rm haskell:8 +GHCi, version 8.0.2: http://www.haskell.org/ghc/ :? for help Prelude> ``` Dockerize an application from Hackage with a `Dockerfile`: ```dockerfile -FROM haskell:7 +FROM haskell:8 RUN stack install pandoc pandoc-citeproc ENTRYPOINT ["pandoc"] ``` @@ -42,7 +42,7 @@ ENTRYPOINT ["pandoc"] Alternatively, using `cabal`: ```dockerfile -FROM haskell:7 +FROM haskell:8 RUN cabal update && cabal install pandoc pandoc-citeproc ENTRYPOINT ["pandoc"] ```