From 9d269a7d7b94d6e709880693e884164ee29d365d Mon Sep 17 00:00:00 2001 From: Szabolcs Dombi Date: Sat, 27 Jan 2018 18:29:42 +0200 Subject: [PATCH] install openssh-client --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index e418e2b..bfdb600 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ WORKDIR /app RUN npm install FROM node:8-alpine +RUN apk add --update openssh-client COPY --from=build /app /app WORKDIR /app CMD node app.js -p 3000