compiler-discord/docker/haskell/Dockerfile
2019-03-12 05:09:46 -04:00

10 lines
250 B
Docker

FROM alpine
LABEL author="1Computer1"
RUN apk update
RUN apk add build-base wget ghc cabal
RUN cabal update
RUN cabal install aeson async attoparsec integer-logarithms megaparsec random scientific split vector
COPY run.sh /var/run/
WORKDIR /var/ws