Skip to content

Instantly share code, notes, and snippets.

@jaydestro
Created September 6, 2017 16:58
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 jaydestro/83192248c4a585a2ee3bdc4edea3b241 to your computer and use it in GitHub Desktop.
Save jaydestro/83192248c4a585a2ee3bdc4edea3b241 to your computer and use it in GitHub Desktop.
Dockerfile
FROM node:boron
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . /usr/src/app
EXPOSE 3000
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment