MyCrypto/Dockerfile

9 lines
89 B
Docker

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