rust/Dockerfile
Paul Campbell f46ed98ec0
Some checks failed
/ test (push) Failing after 7s
First implementation
2024-05-16 19:36:44 +01:00

26 lines
758 B
Docker

FROM docker.io/rust:1.78.0-slim-bookworm
# nodejs - runtime used by forgejo/github actions
# curl - to download cargo-binstall
# clang-16 & mold - faster linkers for rust
RUN apt-get update && \
apt-get install -y \
--no-install-recommends \
nodejs \
curl=7.88.1-10+deb12u5 \
clang-16=1:16.0.6-15~deb12u1 \
mold=1.10.1+dfsg-1 && \
rm -r /var/lib/apt/lists/*
RUN curl -L https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz -o cargo-binstall.tgz && \
tar -xzf cargo-binstall.tgz && \
rm cargo-binstall.tgz && \
mv cargo-binstall /usr/local/bin/
RUN cargo binstall -y cargo-chef
RUN rustup component add rustfmt clippy
COPY entrypoint.sh /
ENTRYPOINT [ "/entrypoint.sh" ]