5 lines
155 B
Docker
5 lines
155 B
Docker
FROM silkeh/clang:20
|
|
RUN apt update -y && apt install -y cppcheck
|
|
ADD runchecks.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"] |