From 0db67dfc9a4ac561568e0dff115bffd9e5931012 Mon Sep 17 00:00:00 2001 From: cube0x8 Date: Thu, 19 Oct 2023 12:05:39 +0300 Subject: [PATCH] updated rust container image + default nightly (#1631) --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4364c49f8c..8ea956e793 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1.2 -FROM rust:bullseye AS libafl +FROM rust:1.73.0 AS libafl LABEL "maintainer"="afl++ team " 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 RUN rustup component add rustfmt clippy +RUN rustup default nightly # 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