devops: install ssh in the docker image (#3716)

References #3681
This commit is contained in:
Andrey Lushnikov 2020-09-01 16:43:20 -07:00 committed by GitHub
parent f8408cb840
commit d71d2f5765
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.