Added Dockerfile

This commit is contained in:
benweet 2013-11-06 22:42:48 +00:00
parent 2c14725f6c
commit 8e07b8764f

15
docker/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
# Dockerfile for cloud9
FROM shykes/nodejs
RUN apt-get update
RUN apt-get upgrade
RUN apt-get install -y git-core
RUN git clone https://github.com/benweet/stackedit.git
RUN (cd /stackedit/ && npm install)
EXPOSE 3000
CMD (cd /stackedit/ && node server.js)