add cargo act runner image

This commit is contained in:
2025-07-24 23:41:37 +01:00
commit 2affa20b35

10
rust-nextest/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM catthehacker/ubuntu:rust-latest
# download static bin
ADD https://get.nexte.st/latest/linux cargo-nextest.tar.gz
# unpack and install
RUN tar xzf cargo-nextest.tar.gz -C ${CARGO_HOME:-~/.cargo}/bin
# clean up
RUN rm cargo-nextest.tar.gz