From d71d2f576575e3cc4d649e5126c487e1bd04ca35 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 1 Sep 2020 16:43:20 -0700 Subject: [PATCH] devops: install ssh in the docker image (#3716) References #3681 --- docs/docker/Dockerfile.bionic | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/docker/Dockerfile.bionic b/docs/docker/Dockerfile.bionic index 8109b788cc..f228c7a54a 100644 --- a/docs/docker/Dockerfile.bionic +++ b/docs/docker/Dockerfile.bionic @@ -62,9 +62,8 @@ RUN groupadd -r pwuser && useradd -r -g pwuser -G audio,video pwuser \ RUN apt-get update && apt-get install -y --no-install-recommends \ xvfb -# 9. Install git & yarn. These are very helpful in a docker image. - -RUN apt-get update && apt-get install -y --no-install-recommends git && \ +# 9. Feature-parity with node.js base images. +RUN apt-get update && apt-get install -y --no-install-recommends git ssh && \ npm install -g yarn # 10. Run everything after as non-privileged user.