mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 03:18:54 +01:00
12 lines
312 B
Docker
12 lines
312 B
Docker
|
FROM jevolk/construct:ubuntu-20.04
|
||
|
|
||
|
ENV CXX g++-10
|
||
|
ENV CC gcc-10
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install --no-install-recommends -y software-properties-common \
|
||
|
&& apt-get update \
|
||
|
&& apt-get install --no-install-recommends -y g++-10 gcc-10 \
|
||
|
&& apt-get clean -y \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|