ソースを参照

Update Dockerfile

Add git and OpenSSH to the default Docker image so we can use git over ssh.
Felipe Plets 8 年 前
コミット
27a7782e7b
1 ファイル変更3 行追加0 行削除
  1. 3 0
      Dockerfile

+ 3 - 0
Dockerfile

@@ -1,5 +1,8 @@
 FROM node:6-alpine
 FROM node:6-alpine
 
 
+RUN apk update && apk upgrade && \
+    apk add --no-cache bash git openssh
+
 ENV WIKI_JS_DOCKER 1
 ENV WIKI_JS_DOCKER 1
 
 
 RUN mkdir -p /usr/src/app
 RUN mkdir -p /usr/src/app