0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-03 19:34:29 +01:00
construct/tools/docker/ubuntu/gcc-9/Dockerfile

13 lines
357 B
Text
Raw Normal View History

2020-04-08 03:58:55 +02:00
FROM jevolk/construct:ubuntu-18.04
ENV CXX g++-9
ENV CC gcc-9
RUN apt-get update \
&& apt-get install --no-install-recommends -y software-properties-common \
&& add-apt-repository ppa:jonathonf/gcc-9.2 \
&& apt-get update \
&& apt-get install --no-install-recommends -y g++-9 gcc-9 \
2020-04-08 03:58:55 +02:00
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*