15 lines
362 B
Docker
15 lines
362 B
Docker
|
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://download.build2.org/0.16.0/build2-install-0.16.0.sh \
|
||
|
&& sh build2-install-0.16.0.sh --yes --trust yes \
|
||
|
&& cd / \
|
||
|
&& rm -rf ~/build2-build
|