From ad9ae147b72541456b41bcb6bb5475b1090ea61c Mon Sep 17 00:00:00 2001 From: jcmartin Date: Fri, 6 Nov 2020 05:56:47 +0000 Subject: [PATCH] Update ci build to use a later version of stack. --- ci_build/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci_build/Dockerfile b/ci_build/Dockerfile index 3caa2cb..fcf33f0 100644 --- a/ci_build/Dockerfile +++ b/ci_build/Dockerfile @@ -30,8 +30,8 @@ RUN \ netbase \ && \ # Installs stack. - curl -O -L https://github.com/commercialhaskell/stack/releases/download/v2.1.3/stack-2.1.3-linux-x86_64.tar.gz && \ - tar zxf stack-2.1.3-linux-x86_64.tar.gz -C /usr/local/bin stack-2.1.3-linux-x86_64/stack --strip 1 && \ + curl -O -L https://github.com/commercialhaskell/stack/releases/download/v2.5.1/stack-2.5.1-linux-x86_64.tar.gz && \ + tar zxf stack-2.5.1-linux-x86_64.tar.gz -C /usr/local/bin stack-2.5.1-linux-x86_64/stack --strip 1 && \ # Installs protoc and the libraries. curl -O -L https://github.com/google/protobuf/releases/download/v3.13.0/protoc-3.13.0-linux-x86_64.zip && \ unzip -d /usr/local protoc-3.13.0-linux-x86_64.zip bin/protoc && \