From a7417b35b87f3e6680efaac357456ab1a331dab3 Mon Sep 17 00:00:00 2001 From: Russel Waters Date: Wed, 30 Oct 2019 10:07:39 -0400 Subject: [PATCH] allow for updated TARGET usage by updating cmake in nano-env:base (#2372) --- docker/ci/Dockerfile-base | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker/ci/Dockerfile-base b/docker/ci/Dockerfile-base index 0afda04a..61cb8e7d 100644 --- a/docker/ci/Dockerfile-base +++ b/docker/ci/Dockerfile-base @@ -4,11 +4,14 @@ ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update -qq && apt-get install -yqq \ build-essential \ - cmake \ g++ \ wget \ python +RUN wget -O cmake_install.sh https://github.com/Kitware/CMake/releases/download/v3.15.4/cmake-3.15.4-Linux-x86_64.sh && \ + chmod +x cmake_install.sh && \ + ./cmake_install.sh --prefix=/usr --exclude-subdir --skip-license + RUN apt-get update -qq && apt-get install -yqq \ qt5-default \ valgrind \