mirror of
https://github.com/matrix-construct/construct
synced 2024-10-31 19:08:59 +01:00
9 lines
207 B
Docker
9 lines
207 B
Docker
FROM jevolk/construct:ubuntu-20.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/*
|