mirror of
https://github.com/matrix-construct/construct
synced 2024-11-04 12:58:53 +01:00
10 lines
230 B
Docker
10 lines
230 B
Docker
FROM jevolk/construct:ubuntu-22.04-base
|
|
|
|
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/*
|
|
|