Don't install 'recommended' packages, to save on build time and image size. (#1957)

This commit is contained in:
steadmon 2018-11-14 21:51:13 -08:00 committed by Oliver Chang
parent 7a141190cf
commit 646fca1b50
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,8 @@
FROM gcr.io/oss-fuzz-base/base-builder FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER steadmon@google.com MAINTAINER steadmon@google.com
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y cvs cvsps gettext libcgi-pm-perl libcurl4-gnutls-dev \ apt-get install --no-install-recommends -y \
cvs cvsps gettext libcgi-pm-perl libcurl4-gnutls-dev \
libdbd-sqlite3-perl liberror-perl libexpat1-dev libhttp-date-perl \ libdbd-sqlite3-perl liberror-perl libexpat1-dev libhttp-date-perl \
libio-pty-perl libmailtools-perl libpcre2-dev libpcre3-dev libsvn-perl \ libio-pty-perl libmailtools-perl libpcre2-dev libpcre3-dev libsvn-perl \
libtime-modules-perl libyaml-perl libz-dev python subversion tcl unzip \ libtime-modules-perl libyaml-perl libz-dev python subversion tcl unzip \