From adec0ca09c7b60ebfb9e1b18d5248a2f80a55462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ey=C3=BE=C3=B3r=20Magn=C3=BAsson?= Date: Fri, 25 May 2018 10:48:32 +0200 Subject: [PATCH] fix(hello-world-example): add missing Dockerfile directives --- examples/hello-world/services/hello-container/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/hello-world/services/hello-container/Dockerfile b/examples/hello-world/services/hello-container/Dockerfile index 8cb61f1743..dba34bf13a 100644 --- a/examples/hello-world/services/hello-container/Dockerfile +++ b/examples/hello-world/services/hello-container/Dockerfile @@ -3,9 +3,9 @@ FROM node:9-alpine ENV PORT=8080 EXPOSE ${PORT} -RUN npm install - ADD . /app WORKDIR /app +RUN npm install + CMD ["npm", "start"]