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-12/Dockerfile
2022-07-19 14:26:23 -07:00

17 lines
262 B
Docker

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