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 \
|
2024-05-26 08:01:01 +00:00
|
|
|
&& 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
|