RYAN
d6ea93cce7
Some checks failed
on-push / infra/buildenv/cxx-amd64-fedora-40 (push) Has been cancelled
15 lines
385 B
Docker
15 lines
385 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://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 \
|
|
&& cd / \
|
|
&& rm -rf ~/build2-build
|