Files
weave-scope/client/Dockerfile
David Kaltschmidt e518bedecb Update the JS tooling
* get rid of gulp
* use webpack-dev-server to serve app.js
* express serves static files
* 2 webpack configs: local and production
* for development with backend, websocket URL is injected
* remove unneeded static files
2015-08-24 12:41:17 +02:00

6 lines
173 B
Docker

FROM node:0.10
WORKDIR /home/weave
COPY package.json /home/weave/
RUN npm install
COPY webpack.local.config.js webpack.production.config.js server.js .eslintrc /home/weave/