commit 2affa20b3582541dab94bdadee4adb1fa5cca65e Author: Fergus Molloy Date: Thu Jul 24 23:41:37 2025 +0100 add cargo act runner image diff --git a/rust-nextest/Dockerfile b/rust-nextest/Dockerfile new file mode 100644 index 0000000..78cbfda --- /dev/null +++ b/rust-nextest/Dockerfile @@ -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