Warning, /sdk/clazy/tests/docker/images/clazy-debian-unstable/Dockerfile is written in an unsupported language. File is not indexed.
0001 # This Dockerfile creates the container for testing on Debian Unstable 0002 0003 0004 FROM debian:unstable 0005 MAINTAINER Sergio Martins (sergio.martins@kdab.com) 0006 0007 RUN apt-get update 0008 RUN apt install -y build-essential g++ clang-12 clang-tools-12 libclang-12-dev git-core python3 ninja-build qtbase5-dev qtdeclarative5-dev libssl-dev 0009 0010 # Install a more recent CMake, so we can use presets 0011 WORKDIR / 0012 RUN git clone https://github.com/Kitware/CMake.git 0013 WORKDIR /CMake 0014 RUN git checkout v3.21.0 && ./configure --prefix=/usr/ && make -j10 && make install 0015 0016 RUN groupadd -g 1000 defaultgroup && \ 0017 useradd -u 1000 -g defaultgroup user -m 0018 0019 ENV PATH=/usr/lib/llvm-12/bin/:/clazy-src/build-debian-unstable/bin/:$PATH 0020 ENV LD_LIBRARY_PATH=/usr/lib/llvm-12/lib64/:/clazy-src/build-debian-unstable/lib/:$LD_LIBRARY_PATH 0021 ENV CLANG_BUILTIN_INCLUDE_DIR=/usr/lib/llvm-12/lib/clang/12.0.1/include/