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"]