I'm hoping to install rustup on a Docker container.
Here are the commands I run:
RUN curl -s https://static.rust-lang.org/rustup.sh > /home/install.sh
RUN chmod +x /home/install.sh
RUN sh /home/install.sh -s -- --default-toolchain nightly
It appears to install both cargo and rustc properly but not rustup. Additionally, there is no .cargo folder created as I would expect.