0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-09 21:48:55 +02:00
construct/docker/ubuntu/22.04/base-clang-13/Dockerfile

17 lines
275 B
Docker
Raw Normal View History

FROM jevolk/construct:ubuntu-22.04-base
ENV CC clang-13
ENV CXX clang++-13
ENV packages="\
clang-13 \
llvm-13-dev \
"
RUN true \
&& apt-get update \
&& apt-get install --no-install-recommends -y ${packages} \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* \
&& true