January 2019
Intermediate to advanced
520 pages
14h 32m
English
The image for the agent service created from the official image of minimal agent for TeamCity is as follows:
FROM jetbrains/teamcity-minimal-agent:latestRUN apt-get updateRUN apt-get install -y build-essentialENV RUST_VERSION=1.32.0RUN curl https://sh.rustup.rs -sSf \ | sh -s -- -y --no-modify-path --default-toolchain $RUST_VERSIONENV PATH=/root/.cargo/bin:$PATHRUN rustup --version; \ cargo --version; \ rustc --version;RUN rustup component add rustfmtRUN rustup component add clippy
As you can see, we installed the Rust compiler and added rustfmt and clippy as components with rustup.
Read now
Unlock full access