16 lines
418 B
Docker
Raw Normal View History

2024-05-26 09:50:52 +02:00
FROM fedora:40
RUN true \
&& dnf -y update \
2024-10-14 14:08:56 +02:00
&& dnf -y install wget curl g++ openssl git make nodejs xxd \
2024-10-10 20:31:56 +02:00
&& dnf -y install glibc-static libstdc++-static \
2024-05-26 09:50:52 +02:00
&& 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 \
2024-05-26 09:50:52 +02:00
&& cd / \
&& rm -rf ~/build2-build