0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-12 16:43:07 +01:00
construct/docker/ubuntu/22.04/base-gcc-9/Dockerfile

17 lines
258 B
Text
Raw Normal View History

FROM jevolk/construct:ubuntu-22.04-base
2020-04-08 03:58:55 +02:00
ENV CC gcc-9
ENV CXX g++-9
ENV packages="\
gcc-9 \
g++-9 \
"
2020-04-08 03:58:55 +02:00
2022-07-04 22:43:41 +02:00
RUN true \
&& apt-get update \
&& apt-get install --no-install-recommends -y ${packages} \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* \
&& true