mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-10 18:16:45 +00:00
* initial attempt at a docker based MEW for dev * add webpack dev polling which is needed when mounting on windows. https://github.com/webpack/webpack-dev-server/issues/155#issuecomment-159140735 * readme
9 lines
89 B
Docker
9 lines
89 B
Docker
FROM node:7.7.2
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY package.json .
|
|
RUN npm install --quiet
|
|
|
|
COPY . .
|