For more information about this image and its history, please see the relevant manifest file (library/haskell
). This image is updated via pull requests to the docker-library/official-images
GitHub repo.
For detailed information about the virtual/transfer sizes and individual layers of each of the above supported tags, please see the haskell/tag-details.md
file in the docker-library/docs
GitHub repo.
Haskell is a lazy, functional, statically-typed programming language with advanced type system features such as higher-rank, higher-kinded parametric polymorphism, monadic effects, generalized algebraic data types (GADTs), flexible type classes, associated type families, and more.
Haskell's ghc
is a portable, optimizing compiler with a foreign-function interface (FFI), an LLVM backend, and sophisticated runtime support for concurrency, explicit/implicit parallelism, runtime profiling, etc. Other Haskell tools like criterion
, quickcheck
, hpc
, and haddock
provide advanced benchmarking, property-based testing, code coverage, and documentation generation.
A large number of production-quality Haskell libraries are available from Hackage in the form of Cabal packages. The traditional cabal
tool, or the more recent stack
tool (available in 7.10.3
+) can be used to streamline working with Cabal packages. The key differences are summarized here. New users are encouraged to start with stack
.
This image ships a minimal Haskell toolchain with the following packages from the hvr PPA:
ghc
alex
cabal-install
happy
As of 7.10.3
, the stack
tool is included via FPComplete's Debian repository.
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.
Start an interactive interpreter session with ghci
:
$ docker run -it --rm haskell:7.10.3
GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help
Prelude>
Dockerize an application from Hackage with a Dockerfile
:
FROM haskell:7
RUN stack install pandoc pandoc-citeproc
ENTRYPOINT ["pandoc"]
Alternatively, using cabal
:
FROM haskell:7
RUN cabal update && cabal install pandoc pandoc-citeproc
ENTRYPOINT ["pandoc"]
Iteratively develop a Haskell application with a Dockerfile
utilizing the build cache:
FROM haskell:7.10
WORKDIR /opt/server
RUN cabal update
# Add just the .cabal file to capture dependencies
COPY ./snap-example.cabal /opt/server/snap-example.cabal
# Docker will cache this command as a layer, freeing us up to
# modify source code without re-installing dependencies
# (unless the .cabal file changes!)
RUN cabal install --only-dependencies -j4
# Add and Install Application Code
COPY . /opt/server
RUN cabal install
CMD ["snap-example"]
See the application snippet above in more detail in the example snap application.
This image is licensed under the MIT License (see LICENSE), and includes software licensed under the Glasgow Haskell Compiler License (BSD-style).
This image is officially supported on Docker version 1.10.3.
Support for older versions (down to 1.6) is provided on a best-effort basis.
Please see the Docker installation documentation for details on how to upgrade your Docker daemon.
Documentation for this image is stored in the haskell/
directory of the docker-library/docs
GitHub repo. Be sure to familiarize yourself with the repository's README.md
file before attempting a pull request.
If you have any problems with or questions about this image, please contact us through a GitHub issue. If the issue is related to a CVE, please check for a cve-tracker
issue on the official-images
repository first.
You can also reach many of the official image maintainers via the #docker-library
IRC channel on Freenode.
You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.
Before you start to code, we recommend discussing your plans through a GitHub issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.