MyCrypto/Dockerfile
Daniel Ternyak 52cbdfbd0f Docker (#40)
* 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
2017-07-10 22:03:08 -05:00

9 lines
89 B
Docker

FROM node:7.7.2
WORKDIR /usr/app
COPY package.json .
RUN npm install --quiet
COPY . .