feat: Simplify dockerfile significantly

- Use docker library version of node
 - Assume dockerfile lives with sourcecode
 - Assume server can be started with `npm start` aka `node server.js`
 - Assumes all dependencies are listed in `package.json`
This commit is contained in:
Kevin Brey 2014-10-29 12:46:28 -05:00
parent 43aa7e8ec7
commit 593ec667a4

View File

@ -1,13 +1,7 @@
FROM debian:jessie
# Pull base image.
FROM node:0.10-onbuild
RUN apt-get update
RUN apt-get upgrade -yq
RUN apt-get install -yq git nodejs-legacy npm
RUN git clone https://github.com/benweet/stackedit.git
WORKDIR stackedit
RUN npm install
RUN node_modules/bower/bin/bower install --allow-root --production --config.interactive=false
CMD nodejs server.js
# Node base will default the command to `node server.js`.
# Expose port.
EXPOSE 3000