Skip to content

Instantly share code, notes, and snippets.

@mrunalp
Created November 20, 2013 20:44
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 mrunalp/7570673 to your computer and use it in GitHub Desktop.
Save mrunalp/7570673 to your computer and use it in GitHub Desktop.
# Base on the Fedora image created by Matthew
FROM mattdm/fedora
# Install the JBoss Application Server 7
RUN yum install -y nodejs npm
ADD . /src
RUN cd /src; npm install
EXPOSE 8080
CMD ["node", "/src/index.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment