mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
11 lines
163 B
Docker
11 lines
163 B
Docker
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"]
|