Skip to content

Instantly share code, notes, and snippets.

@zodani
Last active June 26, 2017 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zodani/76154c6ecc8aa082d0a45fed5f758caf to your computer and use it in GitHub Desktop.
Save zodani/76154c6ecc8aa082d0a45fed5f758caf to your computer and use it in GitHub Desktop.
FROM node:6.11.0
RUN mkdir -p /app
WORKDIR /app
COPY . /app
RUN npm install
EXPOSE 3000 80
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment