aboutsummaryrefslogtreecommitdiff
path: root/infra/base-images/base-builder
diff options
context:
space:
mode:
authorAbhishek Arya <inferno@chromium.org>2020-11-17 12:23:29 -0800
committerGitHub <noreply@github.com>2020-11-17 12:23:29 -0800
commit93214a5535976d532475f322469367816beedd7b (patch)
tree908e0aad00365cb069d7fa9c909882725bf1317d /infra/base-images/base-builder
parent583bd2b3c326e1d597df049f6c26f8f9c8d98d5f (diff)
downloadoss-fuzz-93214a5535976d532475f322469367816beedd7b.tar.gz
Move atheris install base builder where python3 is installed. (#4650)
Diffstat (limited to 'infra/base-images/base-builder')
-rw-r--r--infra/base-images/base-builder/Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/infra/base-images/base-builder/Dockerfile b/infra/base-images/base-builder/Dockerfile
index 6bedecbc6..b3ecbb51c 100644
--- a/infra/base-images/base-builder/Dockerfile
+++ b/infra/base-images/base-builder/Dockerfile
@@ -55,6 +55,9 @@ 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
+
# Download and install the latest stable Go.
ADD https://storage.googleapis.com/golang/getgo/installer_linux $SRC/
RUN chmod +x $SRC/installer_linux && \