7 lines
175 B
Docker
7 lines
175 B
Docker
FROM silkeh/clang:20
|
|
WORKDIR /build
|
|
RUN apt update -y && apt install -y cppcheck
|
|
ADD runchecks.sh /entrypoint.sh
|
|
COPY . .
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT /entrypoint.sh |