ci: add static_analysis #2
1 changed files with 19 additions and 0 deletions
19
tools/ci/images/static_analysis/Dockerfile
Normal file
19
tools/ci/images/static_analysis/Dockerfile
Normal 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
|
Loading…
Add table
Reference in a new issue