From 2827f64860302c1f5a75d0d39240a0595d345b67 Mon Sep 17 00:00:00 2001 From: Mohd Shukri Hasan Date: Thu, 30 Sep 2021 15:25:10 +0200 Subject: [PATCH] Make build serial Make build serial to pass checks on our fork --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d357141b5..7bea46853 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN stack setup # in parallel. However, this can cause OOM issues as the linking step # in GHC can be expensive. If the build fails, try specifying the # '-j1' flag to force the build to run sequentially. -RUN stack install +RUN stack install -j1 FROM debian:buster