ContainersCreatorCICD/RustImage/Dockerfile
2025-12-30 16:43:27 +01:00

11 lines
326 B
Docker

FROM git.rufous-trench.ts.net/crizomb/forgejo-action-base:deb13-node20
# No version specified here and it's ok, I live with it
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y \
--profile minimal \
--default-toolchain stable
ENV PATH="/root/.cargo/bin:${PATH}"
# Sanity check
RUN rustc --version && cargo --version