mirror of https://github.com/google/oss-fuzz.git
httplib2, aiohttp: fix builds (#7939)
This commit is contained in:
parent
13e7d063ca
commit
7407ad1d06
|
@ -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/
|
||||
|
|
|
@ -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/
|
||||
|
|
Loading…
Reference in New Issue