From 508566b0a4fd5618792ab6d57aeedba4cd1f40fe Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Mon, 6 Feb 2023 12:19:35 -0800 Subject: [PATCH] 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 --- docker/gerrit/base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/gerrit/base/Dockerfile b/docker/gerrit/base/Dockerfile index dedec7451e..922c6fae71 100644 --- a/docker/gerrit/base/Dockerfile +++ b/docker/gerrit/base/Dockerfile @@ -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 \