From ad37a1a7cdace1f66115d38b9632a198e7a23224 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 2 Dec 2023 13:51:40 +0100 Subject: [PATCH] Update rust docker image to 1.74 Compiling with Docker is failing on 1.69 due to dependencies requiring a newer Rust version: ``` error: package `clap_lex v0.5.1` cannot be built because it requires rustc 1.70.0 or newer, while the currently active rustc version is 1.69.0 Either upgrade to rustc 1.70.0 or newer, or use cargo update -p clap_lex@0.5.1 --precise ver where `ver` is the latest version of `clap_lex` supporting rustc 1.69.0 ``` With this change it's possible to compile RustHound on Docker again, this was tested with `sudo docker run --rm -v `pwd`:/usr/src/rusthound rusthound windows` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae0ebe8..3ac2034 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.69-slim-buster +FROM rust:1.74-slim-buster WORKDIR /usr/src/rusthound