expat: remove autotools build dependencies (#9706)

Expat is built using cmake, so autotools and friends should not be
required.
This commit is contained in:
Michael Ford 2023-02-15 09:15:58 +08:00 committed by GitHub
parent 1987276eda
commit 1aae37e547
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 docbook2x cmake
RUN apt-get update && apt-get install -y cmake docbook2x make
RUN git clone --depth 1 https://github.com/libexpat/libexpat expat
WORKDIR expat