Skip to content

Commit

Permalink
Update rust docker image to 1.74
Browse files Browse the repository at this point in the history
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 [email protected] --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`
  • Loading branch information
LukasReschke authored Dec 2, 2023
1 parent e4251d3 commit ad37a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.69-slim-buster
FROM rust:1.74-slim-buster

WORKDIR /usr/src/rusthound

Expand Down

0 comments on commit ad37a1a

Please sign in to comment.