Skip to content

Commit

Permalink
fix(hello-world-example): add missing Dockerfile directives
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 authored and edvald committed May 25, 2018
1 parent 3443b9c commit 4acc4cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/hello-world/services/hello-container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 4acc4cc

Please sign in to comment.