From ab608fc8edc053c50d19fe8cde4a3e250cc6409d Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 1 Sep 2020 16:35:46 -0700 Subject: [PATCH 1/2] devops: install ssh in the docker image --- docs/docker/Dockerfile.bionic | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docker/Dockerfile.bionic b/docs/docker/Dockerfile.bionic index 8109b788cc072..6629c1732c4aa 100644 --- a/docs/docker/Dockerfile.bionic +++ b/docs/docker/Dockerfile.bionic @@ -62,9 +62,9 @@ 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. +# 9. Install git, yarn & ssh. These are very helpful in a docker image. -RUN apt-get update && apt-get install -y --no-install-recommends git && \ +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. From 87183706a72834339ca77aaabe0e8b00dc024402 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 1 Sep 2020 16:41:00 -0700 Subject: [PATCH 2/2] nit: update comment --- docs/docker/Dockerfile.bionic | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/docker/Dockerfile.bionic b/docs/docker/Dockerfile.bionic index 6629c1732c4aa..f228c7a54a83d 100644 --- a/docs/docker/Dockerfile.bionic +++ b/docs/docker/Dockerfile.bionic @@ -62,8 +62,7 @@ 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 & ssh. These are very helpful in a docker image. - +# 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