Skip to content

Commit

Permalink
attempt with higher memory limit for ghc
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasWeise committed Jul 27, 2020
1 parent 744b35d commit ea89b71
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,26 +41,26 @@ RUN echo "Initial update." &&\
echo "Getting the newest list of cabal packages." &&\
cabal update &&\
echo "Installing QuickCheck via cabal." &&\
cabal install --ghc-options='+RTS -M1G -RTS' \
cabal install --ghc-options='+RTS -M2G -RTS' \
--lib \
QuickCheck &&\
echo "Installing pandoc via cabal." &&\
cabal install --ghc-options='+RTS -M1G -RTS' \
cabal install --ghc-options='+RTS -M2G -RTS' \
--allow-newer=base \
pandoc &&\
echo "Installing pandoc-citeproc via cabal." &&\
cabal install --ghc-options='+RTS -M1G -RTS' \
cabal install --ghc-options='+RTS -M2G -RTS' \
--allow-newer=base \
pandoc-citeproc &&\
echo "Installing pandoc-citeproc-preamble via cabal." &&\
cabal install --ghc-options='+RTS -M1G -RTS' \
cabal install --ghc-options='+RTS -M2G -RTS' \
--allow-newer=base \
pandoc-citeproc-preamble &&\
echo "Installing pandoc-crossref via cabal." &&\
cabal install --ghc-options='+RTS -M1G -RTS' \
cabal install --ghc-options='+RTS -M2G -RTS' \
pandoc-crossref &&\
echo "Installing latex-formulae-pandoc via cabal." &&\
cabal install --ghc-options='+RTS -M1G -RTS' \
cabal install --ghc-options='+RTS -M2G -RTS' \
--allow-newer=base \
--allow-newer=QuickCheck \
latex-formulae-pandoc &&\
Expand Down

0 comments on commit ea89b71

Please sign in to comment.