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
Raw Normal View History

2021-11-15 17:09:27 +00:00
FROM docker.io/haskell:buster
2021-10-15 12:27:10 +00:00
RUN apt-get update && apt-get install -y haskell-platform
2021-10-15 17:30:29 +00:00
WORKDIR /opt
RUN cabal update && cabal install tasty-hunit
2021-10-15 17:30:29 +00:00
CMD ["cabal", "repl", "-b", "base", "-b", "tasty", "-b", "tasty-hunit"]