mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 18:51:17 +00:00
7 lines
164 B
Docker
7 lines
164 B
Docker
FROM node:0.10
|
|
WORKDIR /home/weave
|
|
RUN npm install -g gulp
|
|
COPY package.json /home/weave/
|
|
RUN npm install
|
|
COPY gulpfile.js webpack.config.js .eslintrc /home/weave/
|