mirror of
https://github.com/wiiu-env/clang-format-checker-docker.git
synced 2025-07-13 15:06:01 +02:00
10 lines
173 B
Docker
10 lines
173 B
Docker
FROM alpine:3
|
|
|
|
RUN apk add --no-cache clang python3
|
|
|
|
ADD run-clang-format/run-clang-format.py /usr/bin
|
|
|
|
WORKDIR /src
|
|
ENTRYPOINT ["python3", "/usr/bin/run-clang-format.py"]
|
|
|