Skip to content

Commit

Permalink
Merge pull request #119 from garden-io/fix-hello-world-example
Browse files Browse the repository at this point in the history
fix(hello-world-example): add missing Dockerfile directives
  • Loading branch information
edvald authored May 25, 2018
2 parents 3443b9c + 4acc4cc commit 32c4b2e
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 32c4b2e

Please sign in to comment.