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.
This commit is contained in:
Oliver Chang 2018-01-15 09:53:38 +11:00
parent 8e2faaabe3
commit 2af81c075d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
FROM gcr.io/oss-fuzz-base/base-builder FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER tanin@google.com 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 # We won't be able to poll fossil for changes, so this will build
# only once a day. # only once a day.