Skip to content

Instantly share code, notes, and snippets.

@johnste
Created December 17, 2015 10:46
Show Gist options
  • Save johnste/59fafa8bd5a83b038c2c to your computer and use it in GitHub Desktop.
Save johnste/59fafa8bd5a83b038c2c to your computer and use it in GitHub Desktop.
FROM node:5.2.0
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
ONBUILD COPY package.json /usr/src/app/
ONBUILD COPY .npmrc /usr/src/app/
ONBUILD RUN npm install
ONBUILD 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