mirror of
https://github.com/matrix-construct/construct
synced 2024-11-30 18:52:41 +01:00
10 lines
207 B
Text
10 lines
207 B
Text
|
FROM jevolk/construct:ubuntu-18.04
|
||
|
|
||
|
ENV CXX g++-8
|
||
|
ENV CC gcc-8
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install --no-install-recommends -y g++-8 gcc-8 \
|
||
|
&& apt-get clean -y \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|