mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 10:11:03 +00:00
This allows us to have both normal and external resource versions of static content in the same binary, and switch with a flag
7 lines
279 B
Docker
7 lines
279 B
Docker
FROM node:4.2.2
|
|
WORKDIR /home/weave
|
|
COPY package.json /home/weave/
|
|
ENV NPM_CONFIG_LOGLEVEL=warn NPM_CONFIG_PROGRESS=false
|
|
RUN npm install
|
|
COPY webpack.local.config.js webpack.production.config.js webpack.external.config.js server.js .babelrc .eslintrc .eslintignore /home/weave/
|