add cmake-format python module to static analyzers various other script formatting and cleanup
22 lines
632 B
Text
22 lines
632 B
Text
FROM ubuntu:18.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update -qq && apt-get install -yqq \
|
|
build-essential \
|
|
g++ \
|
|
wget \
|
|
python \
|
|
zlib1g-dev
|
|
|
|
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 \
|
|
xorg xvfb xauth xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic
|
|
|
|
ARG REPOSITORY=nanocurrency/nano-node
|
|
LABEL org.opencontainers.image.source https://github.com/$REPOSITORY
|