aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar DavidKorczynski <david@adalogics.com>2022-07-03 13:30:04 +0100
committerGravatar GitHub <noreply@github.com>2022-07-03 13:30:04 +0100
commit7407ad1d0660113a379f7c53a5237f1e6a6dd18d (patch)
tree3a168b19bc388c5514cc76c5d9afe495073a9fae
parent13e7d063ca208c4464a6e6fc03b03f48d0382dda (diff)
httplib2, aiohttp: fix builds (#7939)
-rw-r--r--projects/aiohttp/Dockerfile9
-rw-r--r--projects/httplib2/Dockerfile1
2 files changed, 9 insertions, 1 deletions
diff --git a/projects/aiohttp/Dockerfile b/projects/aiohttp/Dockerfile
index 762b02d2..841c83d6 100644
--- a/projects/aiohttp/Dockerfile
+++ b/projects/aiohttp/Dockerfile
@@ -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/
diff --git a/projects/httplib2/Dockerfile b/projects/httplib2/Dockerfile
index 55a17f9b..5adbd82c 100644
--- a/projects/httplib2/Dockerfile
+++ b/projects/httplib2/Dockerfile
@@ -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/