diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1b04372 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +FROM ubuntu:12.04 + +RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list +RUN apt-get update +RUN apt-get -y install python-software-properties build-essential +RUN add-apt-repository -y ppa:chris-lea/node.js +RUN apt-get update +RUN apt-get -y install nodejs + +WORKDIR /opt/app +ADD . /opt/app + +ENV NODE_ENV docker + +RUN npm install --production + +EXPOSE 7777 + +ENTRYPOINT ["node"] + +CMD ["server.js"] \ No newline at end of file