From 2af81c075d4fc1e28e0b3619ea91afc7e9da5900 Mon Sep 17 00:00:00 2001 From: Oliver Chang Date: Mon, 15 Jan 2018 09:53:38 +1100 Subject: [PATCH] sqlite3: Add zlib1g-dev (#1068). For MSan builds, the configure script thinks zlib is installed and tries to use it in a build because its .so/.a files are available. However, the include files aren't because zlib1g-dev isn't installed. --- projects/sqlite3/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/sqlite3/Dockerfile b/projects/sqlite3/Dockerfile index a1b0e2802..e25694fdb 100644 --- a/projects/sqlite3/Dockerfile +++ b/projects/sqlite3/Dockerfile @@ -16,7 +16,7 @@ FROM gcr.io/oss-fuzz-base/base-builder MAINTAINER tanin@google.com -RUN apt-get update && apt-get install -y make autoconf automake libtool curl tcl +RUN apt-get update && apt-get install -y make autoconf automake libtool curl tcl zlib1g-dev # We won't be able to poll fossil for changes, so this will build # only once a day.