diff --git a/Dockerfile b/Dockerfile index b0aefbc52f..4364c49f8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,8 @@ 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 python3-venv ninja-build +RUN apt update && apt install -y build-essential gdb git wget python3-venv ninja-build lsb-release software-properties-common gnupg +RUN wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh 15 # Copy a dummy.rs and Cargo.toml first, so that dependencies are cached WORKDIR /libafl