mirror of
https://github.com/matrix-construct/construct
synced 2024-10-31 19:08:59 +01:00
10 lines
225 B
Docker
10 lines
225 B
Docker
FROM jevolk/construct:ubuntu-20.04
|
|
|
|
ENV CC clang-12
|
|
ENV CXX clang++-12
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y clang-12 llvm-12-dev \
|
|
&& apt-get clean -y \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|