Provide an install-rust.sh script (#3) Due to moby/moby#25409, we are unable to update rust if it is already installed. This image is simplified to support /install-rust.sh which installs rustup and defaults to nightly.
Provide an install-rust.sh script (#3)
Due to moby/moby#25409, we are unable to update rust if it is already installed.
This image is simplified to support /install-rust.sh which installs rustup and defaults to nightly.
A base docker image for building against the latest nightly.
This image should be extended. For example:
FROM linkerd/rustup-nightly:latest RUN /install-rust.sh && cargo install rustfmt && cargo install clippy COPY . /app WORKDIR /app RUN cargo clippy
rustup-nightly
A base docker image for building against the latest nightly.
This image should be extended. For example: