Created
July 25, 2014 15:09
-
-
Save dburrows/8279298b32e47557eb3c to your computer and use it in GitHub Desktop.
This file contains hidden or 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 ubuntu:14.04 | |
RUN apt-get -y update | |
RUN apt-get -y install software-properties-common | |
RUN add-apt-repository ppa:chris-lea/node.js | |
RUN apt-get -y update | |
RUN apt-get -y install nodejs | |
ADD . /src | |
RUN cd /src; npm install | |
EXPOSE 8080 | |
CMD ["nodejs", "/src/index.js"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment