0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-31 19:08:59 +01:00
construct/docker/ubuntu/20.04/clang-12/Dockerfile

11 lines
225 B
Docker
Raw Normal View History

2020-07-14 05:53:28 +02:00
FROM jevolk/construct:ubuntu-20.04
ENV CC clang-12
ENV CXX clang++-12
2020-07-14 05:53:28 +02:00
RUN apt-get update \
&& apt-get install --no-install-recommends -y clang-12 llvm-12-dev \
2020-07-14 05:53:28 +02:00
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*