Drop gitweb dependencies

Gerrit no longer uses a local gitweb installation, so we don't need
libcgi-pm-perl in our container images.

Change-Id: I794d6cb50f277e4856234854e53a3f31ac128145
This commit is contained in:
Jeremy Stanley 2022-01-19 15:31:49 +00:00 committed by Clark Boylan
parent 6ebbe44528
commit f4adea5513
1 changed files with 1 additions and 2 deletions

View File

@ -24,10 +24,9 @@ FROM docker.io/library/openjdk:11-bullseye as gerrit-base
RUN echo 'APT::Install-Recommends "0";' > /etc/apt/apt.conf.d/95disable-recommends
# libcgi-pm-perl is for gitweb
RUN apt-get update \
&& apt-get install -y dumb-init python3-launchpadlib python3-distutils \
wget unzip libcgi-pm-perl \
wget unzip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& curl https://bootstrap.pypa.io/get-pip.py > /tmp/get-pip.py \