Created
November 20, 2013 20:44
-
-
Save mrunalp/7570673 to your computer and use it in GitHub Desktop.
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
# 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