Created
September 26, 2016 08:36
-
-
Save sava-vidakovic/e0a918f79c5f183ac63d95ce27ce2a1c 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:6.4 | |
ENV NPM_CONFIG_LOG_LEVEL warn | |
WORKDIR /code/ | |
COPY npm-shrinkwrap.json . | |
RUN npm install | |
COPY . . | |
EXPOSE 8000 | |
CMD ["npm", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment