aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--infra/base-images/base-builder/Dockerfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/infra/base-images/base-builder/Dockerfile b/infra/base-images/base-builder/Dockerfile
index b3ecbb51..6b6299e2 100644
--- a/infra/base-images/base-builder/Dockerfile
+++ b/infra/base-images/base-builder/Dockerfile
@@ -55,8 +55,11 @@ RUN export PYTHON_DEPS="\
rm -r /tmp/Python-$PYTHON_VERSION.tar.xz /tmp/Python-$PYTHON_VERSION && \
apt-get remove -y $PYTHON_DEPS # https://github.com/google/oss-fuzz/issues/3888
-# Install Atheris for Python fuzzing.
-RUN CLANG_BIN=/usr/local/bin/clang pip3 install atheris
+# Install latest atheris for python fuzzing.
+RUN pip3 install atheris
+
+# Install pyinstaller for python fuzzer packaging.
+RUN pip3 install pyinstaller==4.1
# Download and install the latest stable Go.
ADD https://storage.googleapis.com/golang/getgo/installer_linux $SRC/