0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-03-02 07:30:18 +01:00
construct/tools/docker/ubuntu/gcc-8/Dockerfile
2020-04-08 03:13:55 +02:00

9 lines
207 B
Docker

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/*