Skip to content

Instantly share code, notes, and snippets.

@aslong
Created June 14, 2014 22:22
Show Gist options
  • Save aslong/663e45c35cd445b8e437 to your computer and use it in GitHub Desktop.
Save aslong/663e45c35cd445b8e437 to your computer and use it in GitHub Desktop.
NodeJS Dockerfile
FROM node:0.10.28
MAINTAINER Andrew Long <aslong87@gmail.com>
ADD . /usr/src/app
WORKDIR /usr/src/app
RUN npm install -g grunt-cli
# Install npm dependencies
RUN npm install
EXPOSE 8000
CMD [ "grunt", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment