ci: add static_analysis Dockerfile

This commit is contained in:
light7734 2025-07-11 14:34:20 +03:30
parent 0a1215d43f
commit ede3e9d82e
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -0,0 +1,19 @@
FROM alpine:latest
RUN apk add --no-cache \
bash \
clang \
llvm \
cmake \
git \
make \
g++ \
python3 \
py3-pip
RUN pip install --no-cache-dir conan
RUN clang --version \
&& conan --version \
&& pip --version \
&& cmake --version