httplib2, aiohttp: fix builds (#7939)

This commit is contained in:
DavidKorczynski 2022-07-03 13:30:04 +01:00 committed by GitHub
parent 13e7d063ca
commit 7407ad1d06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -15,7 +15,14 @@
################################################################################
FROM gcr.io/oss-fuzz-base/base-builder-python
RUN apt-get update && apt-get install -y pkg-config zlib1g zlib1g-dev libjpeg-dev libpng-dev npm
RUN apt-get update && apt-get install -y \
pkg-config \
zlib1g \
zlib1g-dev \
libjpeg-dev \
libpng-dev \
npm \
libffi-dev
RUN git clone --recurse-submodules https://github.com/aio-libs/aiohttp
COPY build.sh $SRC/
COPY fuzz_* $SRC/aiohttp/

View File

@ -15,6 +15,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
COPY build.sh $SRC/