From 2b8285edd4613bd3ecec9e0c92b597eab33caaed Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Fri, 30 Dec 2022 00:00:56 +0000 Subject: [PATCH] httplib2: fix build (#9312) Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=54182 --- projects/httplib2/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/httplib2/Dockerfile b/projects/httplib2/Dockerfile index dd1fdc9ac..997fed34e 100644 --- a/projects/httplib2/Dockerfile +++ b/projects/httplib2/Dockerfile @@ -17,7 +17,7 @@ FROM gcr.io/oss-fuzz-base/base-builder-python RUN apt-get update && apt-get install -y libffi-dev RUN git clone --depth 1 https://github.com/httplib2/httplib2 -RUN python3 -m pip install --upgrade pip +RUN python3 -m pip install --upgrade pip pyparsing COPY build.sh $SRC/ WORKDIR $SRC/httplib2