1# Pinned version of the base image is used to avoid regressions caused 2# by rebuilding of this docker image. To see available versions, you can run 3# "gcloud container images list-tags gcr.io/oss-fuzz-base/base-builder" 4# This base image is built on Mar 12, 2024 5FROM gcr.io/oss-fuzz-base/base-builder@sha256:c3581153788bc49f3634fec3cd36a5d6dfd26632c4afc157fb6faf8ce3af732e 6 7# -------------------------- WARNING -------------------------------------- 8# If you are making changes to this file, consider changing 9# https://github.com/google/oss-fuzz/blob/master/projects/grpc/Dockerfile 10# accordingly. 11# ------------------------------------------------------------------------- 12 13# Install basic packages 14RUN apt-get update && apt-get -y install ${'\\'} 15 autoconf ${'\\'} 16 build-essential ${'\\'} 17 curl ${'\\'} 18 libtool ${'\\'} 19 make ${'\\'} 20 vim ${'\\'} 21 wget 22