rust/Dockerfile
Paul Campbell b961de0eec
All checks were successful
/ test (push) Successful in 38s
chore: bump debian packages
4.234  curl : Depends: libcurl4 (= 7.88.1-10+deb12u5) but
7.88.1-10+deb12u6 is to be installed4.236  libssl-dev : Depends: libssl3
(= 3.0.11-1~deb12u2) but 3.0.13-1~deb12u1 is to be installed4.236
nodejs : Depends: libnode108 (= 18.19.0+dfsg-6~deb12u1) but
18.19.0+dfsg-6~deb12u2 is to be installed
2024-08-02 20:04:27 +01:00

35 lines
1.1 KiB
Docker

FROM docker.io/rust:1.80.0-slim-bookworm
# nodejs - runtime used by forgejo/github actions
# curl - to download cargo-binstall
# clang-16 & mold - faster linkers for rust
# pkg-config - required to compile some rust `-sys` packages
# libssl-dev - build dependency for git-next
RUN apt-get update \
&& \
apt-get install -y \
--no-install-recommends \
nodejs=18.19.0+dfsg-6~deb12u2 \
curl=7.88.1-10+deb12u6 \
clang-16=1:16.0.6-15~deb12u1 \
mold=1.10.1+dfsg-1 \
pkg-config=1.8.1-1 \
libssl-dev=3.0.13-1~deb12u1 \
git=1:2.39.2-1.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 /
RUN git config --global user.email "action@git.kemitix.net" && git config --global user.name "ForgeJo Action. See: https://git.kemitix.net/kemitix/rust"
ENTRYPOINT [ "/entrypoint.sh" ]