mirror of
https://github.com/matrix-construct/construct
synced 2025-01-19 02:51:51 +01:00
12 lines
261 B
Docker
12 lines
261 B
Docker
FROM jevolk/construct:ubuntu-22.04-base
|
|
|
|
ENV CC clang-10
|
|
ENV CXX clang++-10
|
|
|
|
RUN true \
|
|
&& apt-get update \
|
|
&& apt-get install --no-install-recommends -y clang-10 llvm-10-dev \
|
|
&& apt-get clean -y \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& true
|
|
|