Created
December 17, 2015 10:46
-
-
Save johnste/59fafa8bd5a83b038c2c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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