From 27a7782e7b1f7b006da7955721736b77fca4475e Mon Sep 17 00:00:00 2001 From: Felipe Plets Date: Tue, 23 May 2017 01:13:38 -0300 Subject: [PATCH] Update Dockerfile Add git and OpenSSH to the default Docker image so we can use git over ssh. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8a9c9ff1..d6be1599 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM node:6-alpine +RUN apk update && apk upgrade && \ + apk add --no-cache bash git openssh + ENV WIKI_JS_DOCKER 1 RUN mkdir -p /usr/src/app