Skip to content

Instantly share code, notes, and snippets.

@andreareginato
Created February 12, 2015 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreareginato/9baf40a6c9937e7be847 to your computer and use it in GitHub Desktop.
Save andreareginato/9baf40a6c9937e7be847 to your computer and use it in GitHub Desktop.
# node image
FROM node:0.10-onbuild
# docker mantainer
MAINTAINER reggie
# add the files to load
ADD ./ .
# install all needed packages
RUN npm install
# expose port
EXPOSE 1883
# execute app.js
ENTRYPOINT ["node", "app.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment