Difference between revisions of "Haskell Dockerfile"
Jump to navigation
Jump to search
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | * https://hub.docker.com/_/haskell | ||
+ | |||
+ | FROM haskell:latest | ||
+ | RUN [[cabal update]] && [[cabal install]] [[pandoc]] [[citeproc]] | ||
+ | ENTRYPOINT ["pandoc"] | ||
+ | |||
+ | FROM haskell:9.4 | ||
+ | RUN [[cabal update]] && [[cabal install]] pandoc citeproc | ||
+ | ENTRYPOINT ["pandoc"] | ||
+ | |||
+ | |||
+ | |||
FROM haskell:8.10 | FROM haskell:8.10 | ||
RUN [[cabal update]] && [[cabal install]] pandoc citeproc | RUN [[cabal update]] && [[cabal install]] pandoc citeproc |
Latest revision as of 14:14, 7 April 2023
FROM haskell:latest RUN cabal update && cabal install pandoc citeproc ENTRYPOINT ["pandoc"]
FROM haskell:9.4 RUN cabal update && cabal install pandoc citeproc ENTRYPOINT ["pandoc"]
FROM haskell:8.10 RUN cabal update && cabal install pandoc citeproc ENTRYPOINT ["pandoc"]
Advertising: