buildenv/cxx-amd64-fedora-40/Dockerfile

15 lines
385 B
Docker
Raw Normal View History

2024-05-26 07:50:52 +00:00
FROM fedora:40
RUN true \
&& dnf -y update \
&& dnf -y install wget curl g++ openssl git make nodejs \
&& dnf clean all
RUN true \
&& mkdir ~/build2-build \
&& cd ~/build2-build \
&& curl -sSfO https://stage.build2.org/0/0.17.0-a.0/build2-install-0.17.0-a.0-stage.sh \
&& sh build2-install-0.17.0-a.0-stage.sh --yes --trust yes \
2024-05-26 07:50:52 +00:00
&& cd / \
&& rm -rf ~/build2-build