From 3bcd40bcdbdc34e7f0740ea9245882e50c16b787 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 12 Jul 2019 16:20:40 +0200 Subject: [PATCH] Dockerfile: build with the HEAD version of cabal-install This is necessary to avoid https://github.com/haskell/cabal/issues/6125. Fixes https://github.com/haskell/cabal/issues/6125 at last. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 40a6962f4..2960f378b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get install -y software-properties-common RUN apt-add-repository ppa:hvr/ghc RUN apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get install -y unzip libicu-dev postfix -RUN DEBIAN_FRONTEND=noninteractive apt-get install -y ghc-8.2.2 cabal-install-2.4 +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y ghc-8.2.2 cabal-install-head ENV PATH /opt/ghc/bin:$PATH RUN cabal v2-update RUN apt-get install -y zlib1g-dev libssl-dev