mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-14 03:56:46 +00:00
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 . .
|