Created
August 1, 2016 05:23
-
-
Save Server4001/16bdce11219e92fb6d8b431d0a428214 to your computer and use it in GitHub Desktop.
Node.js example Dockerfile
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.4.7 | |
MAINTAINER Brice Bentler <me@bricebentler.com> | |
WORKDIR /var/www/html | |
EXPOSE 3000 | |
ENTRYPOINT ["npm", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment