From 2affa20b3582541dab94bdadee4adb1fa5cca65e Mon Sep 17 00:00:00 2001 From: Fergus Molloy Date: Thu, 24 Jul 2025 23:41:37 +0100 Subject: [PATCH] add cargo act runner image --- rust-nextest/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rust-nextest/Dockerfile 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