-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89c352b
commit f63858f
Showing
2 changed files
with
4 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,9 @@ | ||
FROM ubuntu:20.04 | ||
|
||
ENV CXX=clang++ | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
FROM jdomagala/static_analysis:latest | ||
|
||
COPY entrypoint.sh / | ||
RUN chmod +x /entrypoint.sh | ||
|
||
COPY run_static_analysis.py / | ||
RUN chmod +x /run_static_analysis.py | ||
|
||
RUN apt-get update && apt-get install -y python3 python3-pip git xorg-dev\ | ||
build-essential clang-11 lldb-11 lld-11 libc++-11-dev cppcheck llvm-dev clang-tidy | ||
RUN pip3 install PyGithub | ||
|
||
RUN git clone https://github.com/Kitware/CMake.git && cd CMake && ./bootstrap && make && make install | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters