mirror of
https://github.com/matrix-construct/construct
synced 2024-11-10 03:51:14 +01:00
10 lines
210 B
Docker
10 lines
210 B
Docker
FROM jevolk/construct:ubuntu-18.04
|
|
|
|
ENV CC clang-9
|
|
ENV CXX clang++-9
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y clang-9 \
|
|
&& apt-get clean -y \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|