Last active
December 9, 2015 14:59
-
-
Save thuongdinh-agilityio/45ec6cea89e95911a3db to your computer and use it in GitHub Desktop.
docker_simple_nodejs_4x
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:4 | |
# Add code & set working dir | |
ADD . /app | |
WORKDIR /app | |
# Install npm package | |
RUN npm install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment