aboutsummaryrefslogtreecommitdiff
path: root/infra
diff options
context:
space:
mode:
authorAbhishek Arya <inferno@chromium.org>2020-11-18 16:42:26 -0800
committerGitHub <noreply@github.com>2020-11-18 16:42:26 -0800
commit43f768df012e4c0e52f8ae0a7171cd748ec3f000 (patch)
treef65a9b95e4867c537ddc290174602753a6f69fff /infra
parent07454dc5d945a7ffb05ac2b829e210b839fb5a92 (diff)
downloadoss-fuzz-43f768df012e4c0e52f8ae0a7171cd748ec3f000.tar.gz
Add pyinstaller to experiment with python fuzzer packaging (#4658)
Diffstat (limited to 'infra')
-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 b3ecbb51c..6b6299e28 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/