libevent: remove autotools dependencies (#9700)

Given that the cmake build system is used, we shouldn't have to install
the dependencies to use autotools.
This commit is contained in:
Michael Ford 2023-02-13 23:55:45 +08:00 committed by GitHub
parent 800a1a89ea
commit a47efb6eb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
################################################################################
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y make autoconf automake libtool cmake pkg-config
RUN apt-get update && apt-get install -y cmake make
RUN git clone --depth 1 https://github.com/libevent/libevent.git libevent
WORKDIR libevent
COPY build.sh *.cc *.c $SRC/