0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-19 03:13:47 +02:00
construct/docker/ubuntu/22.04/base-gcc-11/Dockerfile
2022-07-19 14:26:23 -07:00

17 lines
262 B
Docker

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