add dockerfile for checking formatting

This commit is contained in:
Rasmus Karlsson
2019-11-02 11:59:04 +01:00
parent 0d53248b4c
commit 2793551040
2 changed files with 29 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM ubuntu:19.10
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y install clang-format
WORKDIR /build
CMD ["/bin/sh"]
ENTRYPOINT ["./tools/docker/build.sh"]