Add dockerfile for harbor.internal.jpace121.net/k8s/limbo_builder:latest.

This commit is contained in:
James Pace 2024-01-03 20:50:07 -05:00
parent fc111b7606
commit cda58f1605
1 changed files with 10 additions and 0 deletions

View File

@ -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"