diff --git a/images/Dockerfile_limbo_builder b/images/Dockerfile_limbo_builder new file mode 100644 index 0000000..3860b32 --- /dev/null +++ b/images/Dockerfile_limbo_builder @@ -0,0 +1,10 @@ +# For building limbo nightlies, including limbo-gui. +FROM docker.io/library/fedora:latest + +RUN sudo dnf update -y && \ + sudo dnf install -y nodejs yarnpkg openssl-devel curl just gcc +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y +RUN /bin/bash -c "source $HOME/.cargo/env && rustup update" +RUN /bin/bash -c "source $HOME/.cargo/env && rustup toolchain install nightly" +RUN /bin/bash -c "source $HOME/.cargo/env && rustup default nightly" +RUN /bin/bash -c "source $HOME/.cargo/env && cargo install wasm-pack" \ No newline at end of file