0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-18 19:03:44 +02:00
construct/docker/ubuntu/22.04/base-clang-14/Dockerfile
2022-07-19 14:26:23 -07:00

17 lines
275 B
Docker

FROM jevolk/construct:ubuntu-22.04-base
ENV CC clang-14
ENV CXX clang++-14
ENV packages="\
clang-14 \
llvm-14-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