This repository has been archived on 2021-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
fprog2021WS/Dockerfile

9 lines
222 B
Docker

FROM docker.io/haskell:buster
RUN apt-get update && apt-get install -y haskell-platform
WORKDIR /opt
RUN cabal update && cabal install tasty-hunit
CMD ["cabal", "repl", "-b", "base", "-b", "tasty", "-b", "tasty-hunit"]