12 lines
149 B
Docker
12 lines
149 B
Docker
FROM haskell:9.2.8-slim-buster
|
|
|
|
WORKDIR /home/saundersp/haskell_playground
|
|
|
|
RUN cabal update
|
|
|
|
COPY . .
|
|
|
|
RUN cabal build
|
|
|
|
ENTRYPOINT ["cabal", "run"]
|