13 lines
182 B
Text
13 lines
182 B
Text
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add --no-cache \
|
||
|
bash \
|
||
|
curl \
|
||
|
findutils \
|
||
|
git \
|
||
|
libc6-compat \
|
||
|
tar \
|
||
|
clang-extra-tools
|
||
|
|
||
|
RUN clang-format --version && exit 1
|