allow for updated TARGET usage by updating cmake in nano-env:base (#2372)

This commit is contained in:
Russel Waters 2019-10-30 10:07:39 -04:00 committed by GitHub
commit a7417b35b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 \