0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 08:13:46 +02:00
construct/docker/ubuntu/22.04/base-gcc-11/Dockerfile
2022-07-07 16:47:55 -07:00

12 lines
247 B
Docker

FROM jevolk/construct:ubuntu-22.04-base
ENV CXX g++-11
ENV CC gcc-11
RUN true \
&& apt-get update \
&& apt-get install --no-install-recommends -y g++-11 gcc-11 \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* \
&& true