This commit is contained in:
James Pace 2024-01-04 19:29:22 -05:00
parent d7395ff2e9
commit 57fe458012
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ FROM docker.io/library/fedora:latest
RUN sudo dnf update -y && \ RUN sudo dnf update -y && \
sudo dnf install -y nodejs yarnpkg \ sudo dnf install -y nodejs yarnpkg \
openssl-devel curl \ openssl-devel curl \
just gcc openssh-clients just gcc openssh-clients \
git
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y 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 update"
RUN /bin/bash -c "source $HOME/.cargo/env && rustup toolchain install nightly" RUN /bin/bash -c "source $HOME/.cargo/env && rustup toolchain install nightly"