8 lines
107 B
Docker
8 lines
107 B
Docker
FROM haskell:buster
|
|
|
|
RUN apt-get update && apt-get install -y haskell-platform
|
|
|
|
WORKDIR /opt
|
|
|
|
CMD ["ghci"]
|