0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 18:18:56 +02:00
construct/docker/ubuntu/20.04/gcc-8/Dockerfile

10 lines
207 B
Docker
Raw Normal View History

FROM jevolk/construct:ubuntu-20.04
2020-04-08 03:13:55 +02:00
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/*