Stackedit/docker/Dockerfile

16 lines
262 B
Docker
Raw Normal View History

2013-11-06 22:42:48 +00:00
# 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)