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