updated rust container image + default nightly (#1631)

This commit is contained in:
cube0x8 2023-10-19 12:05:39 +03:00 committed by GitHub
parent 0b38fabeb0
commit 0db67dfc9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.2 # syntax=docker/dockerfile:1.2
FROM rust:bullseye AS libafl FROM rust:1.73.0 AS libafl
LABEL "maintainer"="afl++ team <afl@aflplus.plus>" LABEL "maintainer"="afl++ team <afl@aflplus.plus>"
LABEL "about"="LibAFL Docker image" LABEL "about"="LibAFL Docker image"
@ -17,6 +17,7 @@ RUN sh -c 'echo set encoding=utf-8 > /root/.vimrc' \
echo "[build]\nrustc-wrapper = \"${RUSTC_WRAPPER}\"" >> ~/.cargo/config echo "[build]\nrustc-wrapper = \"${RUSTC_WRAPPER}\"" >> ~/.cargo/config
RUN rustup component add rustfmt clippy RUN rustup component add rustfmt clippy
RUN rustup default nightly
# Install clang 11, common build tools # Install clang 11, common build tools
RUN apt update && apt install -y build-essential gdb git wget python3-venv ninja-build lsb-release software-properties-common gnupg RUN apt update && apt install -y build-essential gdb git wget python3-venv ninja-build lsb-release software-properties-common gnupg