Created
October 11, 2017 17:42
-
-
Save aldidana/9a8b0d8f64601c6d7ff13e61e2412b6f to your computer and use it in GitHub Desktop.
This file contains hidden or 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:latest | |
| WORKDIR /usr/app | |
| COPY package.json . | |
| RUN rm -rf node_modules | |
| RUN npm install --quiet | |
| ADD . . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment