0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-04 20:52:45 +01:00
construct/docker/ubuntu/20.04/clang-11/Dockerfile

11 lines
225 B
Text
Raw Normal View History

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