rust/Dockerfile
Paul Campbell d9532aa17a
All checks were successful
/ test (push) Successful in 1h0m55s
build: be more flexible in apt-get versions for docker image
Also merges as we can't build without both in place:

fix(build): revert invalid matrix syntax

Back out "test: verify matrix with stable and nightly"

This backs out commit 5fc345c0de.
2024-09-17 08:44:43 +01:00

32 lines
1.1 KiB
Docker

FROM docker.io/rust:1.81.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
# libdbus-1-dev - linux os interop (e.g. desktop notifications)
# git - git
RUN apt-get update \
&& \
apt-get satisfy -y "nodejs (>=18.19.0) curl (>=7.88.1) pkg-config (>=1.8.1) libssl-dev (>=3.0.14) git (>=2.39.2)" \
&& \
rm -r /var/lib/apt/lists/*
RUN curl -L https://github.com/cargo-bins/cargo-binstall/releases/download/v1.9.0/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@0.1.67 \
cargo-hack@0.6.31 \
release-plz@0.3.80 && \
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" ]