Created
March 6, 2017 11:24
-
-
Save aherve/f200297f5b12bcba1a96aabec418dad2 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
| # smart people already figured out how to install node | |
| FROM mhart/alpine-node:7 | |
| # create a work directory inside the container | |
| RUN mkdir /app | |
| WORKDIR /app | |
| # install utilities. I currently like yarn | |
| RUN npm install -g yarn nodemon tsc | |
| # install dependencies | |
| RUN yarn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment