mirror of
https://github.com/wiiu-env/clang-format-checker-docker.git
synced 2024-11-17 16:49:18 +01:00
11 lines
188 B
Docker
11 lines
188 B
Docker
FROM alpine:3
|
|
|
|
RUN apk add --no-cache clang python3
|
|
|
|
ADD run-clang-format/run-clang-format.py /usr/bin
|
|
|
|
RUN mkdir /src
|
|
WORKDIR /src
|
|
ENTRYPOINT ["python3", "/usr/bin/run-clang-format.py"]
|
|
|