light/tools/ci/images/static_analysis/Dockerfile

21 lines
316 B
Text
Raw Normal View History

2025-07-11 14:34:20 +03:30
FROM alpine:latest
RUN apk add --no-cache \
bash \
clang \
llvm \
cmake \
git \
make \
g++ \
python3 \
py3-pip
RUN pip install --no-cache-dir --break-system-packages conan gitpython
2025-07-11 14:34:20 +03:30
RUN clang --version \
&& conan --version \
&& pip --version \
&& cmake --version