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

17 lines
258 B
Docker

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