R.Y.A.N d27f08dca7
Some checks failed
on-push / infra/buildenv/node (push) Failing after 19s
on-push / infra/buildenv/cxx-amd64-fedora-40 (push) Failing after 25s
on-push / infra/buildenv/combined-amd64-fedora-40 (push) Failing after 19s
on-push / infra/buildenv/cxx-amd64-fedora-41 (push) Failing after 22s
Add combined-amd64-fedora-41
2025-03-08 22:39:56 +01:00

16 lines
450 B
Docker

FROM fedora:41
RUN true \
&& dnf -y update \
&& dnf -y install curl g++ gcc-plugin-devel git make nodejs nodejs openssl wget xxd yarnpkg \
&& dnf -y install glibc-static libstdc++-static \
&& dnf clean all
RUN true \
&& mkdir ~/build2-build \
&& cd ~/build2-build \
&& curl -sSfO https://download.build2.org/0.17.0/build2-install-0.17.0.sh \
&& sh build2-install-0.17.0.sh --yes --trust yes \
&& cd / \
&& rm -rf ~/build2-build