mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-02 17:50:39 +00:00
`npm install` continues to install everything, but `npm install --no-optional` wont install the dev server.
7 lines
227 B
Docker
7 lines
227 B
Docker
FROM node:0.10
|
|
WORKDIR /home/weave
|
|
COPY package.json /home/weave/
|
|
# Dont install optional developer tools
|
|
RUN npm install --no-optional
|
|
COPY webpack.local.config.js webpack.production.config.js server.js .eslintrc /home/weave/
|