diff --git a/tools/ci/images/clang_format/Dockerfile b/tools/ci/images/clang_format/Dockerfile new file mode 100644 index 0000000..36497b9 --- /dev/null +++ b/tools/ci/images/clang_format/Dockerfile @@ -0,0 +1,12 @@ +FROM alpine:latest + +RUN apk add --no-cache \ + bash \ + curl \ + findutils \ + git \ + libc6-compat \ + tar \ + clang-extra-tools + +RUN clang-format --version && exit 1