Warning, /sdk/clazy/tests/docker/images/clazy-fedora-34/Dockerfile is written in an unsupported language. File is not indexed.

0001 # This Dockerfile creates the container for testing on Fedora 34
0002 
0003 FROM fedora:34
0004 MAINTAINER Sergio Martins (sergio.martins@kdab.com)
0005 
0006 RUN yum -y update
0007 RUN yum -y install openssl-devel make git ninja-build gcc llvm-devel clang-devel qt5-qtbase-devel qt5-qtdeclarative-devel diffutils which
0008 
0009 # Install a more recent CMake, so we can use presets
0010 WORKDIR /
0011 RUN git clone https://github.com/Kitware/CMake.git
0012 WORKDIR /CMake
0013 RUN git checkout v3.21.0 && ./configure --prefix=/usr/ && make -j10 && make install
0014 
0015 RUN groupadd -g 1000 defaultgroup && \
0016 useradd -u 1000 -g defaultgroup user -m
0017 
0018 ENV PATH=/usr/lib/llvm-12/bin/:/clazy-src/build-fedora-34/bin/:$PATH
0019 ENV LD_LIBRARY_PATH=/usr/lib/llvm-12/lib64/:/clazy-src/build-fedora-34/lib/:$LD_LIBRARY_PATH
0020 ENV CLANG_BUILTIN_INCLUDE_DIR=/usr/lib64/clang/12.0.0/include/