added ninja-build and python3-venv as dependencies (#1604)

This commit is contained in:
cube0x8 2023-10-04 15:27:55 +03:00 committed by GitHub
parent 7f68f66d70
commit d4e9107fc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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