From d4e9107fc2fa57769be9560944eb0b3e78c641d6 Mon Sep 17 00:00:00 2001 From: cube0x8 Date: Wed, 4 Oct 2023 15:27:55 +0300 Subject: [PATCH] added ninja-build and python3-venv as dependencies (#1604) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1024644377..b0aefbc52f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN sh -c 'echo set encoding=utf-8 > /root/.vimrc' \ RUN rustup component add rustfmt clippy # Install clang 11, common build tools -RUN apt update && apt install -y build-essential gdb git wget clang clang-tools libc++-11-dev libc++abi-11-dev llvm +RUN apt update && apt install -y build-essential gdb git wget clang clang-tools libc++-11-dev libc++abi-11-dev llvm python3-venv ninja-build # Copy a dummy.rs and Cargo.toml first, so that dependencies are cached WORKDIR /libafl