mirror of
https://github.com/matrix-construct/construct
synced 2024-12-12 16:43:07 +01:00
11 lines
243 B
Docker
11 lines
243 B
Docker
FROM jevolk/construct:ubuntu-22.04-base
|
|
|
|
ENV CXX g++-9
|
|
ENV CC gcc-9
|
|
|
|
RUN true \
|
|
&& apt-get update \
|
|
&& apt-get install --no-install-recommends -y g++-9 gcc-9 \
|
|
&& apt-get clean -y \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& true
|