Merge "Drop gitweb dependencies"

This commit is contained in:
Zuul 2022-01-29 00:31:09 +00:00 committed by Gerrit Code Review
commit 9b32637608
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 \