0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-19 15:08:53 +02:00
construct/docker/ubuntu/clang-9/Dockerfile

11 lines
221 B
Docker
Raw Normal View History

FROM jevolk/construct:ubuntu-20.04
2020-04-08 03:13:55 +02:00
ENV CC clang-9
ENV CXX clang++-9
RUN apt-get update \
&& apt-get install --no-install-recommends -y clang-9 llvm-9-dev \
2020-04-08 03:13:55 +02:00
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*