Install openssh-client in our Gerrit docker image

This is required for jeepyb to be able to talk to git remotes via ssh.
Unfortunately this was missed when I converted us over to our python
images.

Change-Id: Id6d2eb25871420f2ec717b189beda1295ecc1f74
This commit is contained in:
Clark Boylan 2023-02-06 12:19:35 -08:00
parent 37564b49b6
commit 508566b0a4

View File

@ -25,7 +25,7 @@ FROM docker.io/opendevorg/python-base:3.9-bullseye as gerrit-base
RUN echo 'APT::Install-Recommends "0";' > /etc/apt/apt.conf.d/95disable-recommends
RUN apt-get update \
&& apt-get install -y dumb-init git openjdk-11-jre-headless unzip \
&& apt-get install -y dumb-init git openssh-client openjdk-11-jre-headless unzip \
# This next set of installs helps align us with the old openjdk image \
# but they may not all be necessary \
&& apt-get install -y xz-utils bzip2 wget curl gnupg \