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"]