From 79082846dea99cffd2ddf15d3daf2832e619e430 Mon Sep 17 00:00:00 2001 From: Dongge Liu Date: Wed, 19 Oct 2022 16:20:10 +1100 Subject: [PATCH] Remove redundant python&pip install --- docker/benchmark-builder/Dockerfile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docker/benchmark-builder/Dockerfile b/docker/benchmark-builder/Dockerfile index da8c72b5a..6813bd1f1 100755 --- a/docker/benchmark-builder/Dockerfile +++ b/docker/benchmark-builder/Dockerfile @@ -24,14 +24,6 @@ ENV FUZZER $fuzzer ENV BENCHMARK $benchmark ENV DEBUG_BUILDER $debug_builder -# Install python. -RUN apt-get update && \ - apt-get upgrade -y && \ - apt-get install -y python3-dev python3-pip - -# Install Python dependencies. -COPY ./requirements.txt /tmp -RUN unset CC CXX CXXFLAGS CFLAGS LDFLAGS && pip install -r /tmp/requirements.txt # Copy the entire fuzzers directory tree to allow for module dependencies. COPY fuzzers $SRC/fuzzers