light/tools/ci/images/static_analysis/Dockerfile
light7734 7ff3b41c04
Some checks failed
continuous-integration/drone/pr Build is failing
ci: fix Dockerfile apk dependencies
2025-07-14 09:44:22 +03:30

35 lines
710 B
Docker

FROM alpine:latest
RUN apk add --no-cache \
bash \
clang \
llvm \
cmake \
git \
make \
g++ \
python3 \
py3-pip \
mesa-dev \
mesa-gl \
pkgconf \
clang-extra-tools
RUN pip install --no-cache-dir --break-system-packages conan gitpython \
&& conan profile detect
RUN clang --version \
&& conan --version \
&& pip --version \
&& cmake --version \
&& clang --version \
&& clang-tidy --version
RUN git clone 'https://git.light7734.com/light7734/light.git' --recursive \
&& cd light \
&& conan install . \
-c tools.system.package_manager:mode=install \
-o enable_static_analysis=True \
--build=missing