mirror of
https://github.com/matrix-construct/construct
synced 2024-11-09 11:31:11 +01:00
11 lines
230 B
Docker
11 lines
230 B
Docker
|
FROM jevolk/construct:ubuntu-22.04-base
|
||
|
|
||
|
ENV CC clang-14
|
||
|
ENV CXX clang++-14
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install --no-install-recommends -y clang-14 llvm-14-dev \
|
||
|
&& apt-get clean -y \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|