• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2018 Google Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15################################################################################
16
17FROM gcr.io/oss-fuzz-base/base-builder
18RUN apt-get update && \
19    apt-get install --no-install-recommends -y \
20        cvs cvsps gettext libcgi-pm-perl libcurl4-gnutls-dev \
21        libdbd-sqlite3-perl liberror-perl libexpat1-dev libhttp-date-perl \
22        libio-pty-perl libmailtools-perl libpcre2-dev libpcre3-dev libsvn-perl \
23        libtime-modules-perl libyaml-perl libz-dev python subversion tcl unzip \
24        asciidoc docbook-xsl xmlto libssl-dev zip
25RUN git clone https://github.com/git/git git
26WORKDIR git
27RUN git checkout origin/next
28COPY build.sh $SRC/
29