Dockerfile 104 B

123456789
  1. FROM node:13.12.0-alpine
  2. WORKDIR /usr/src/app
  3. COPY package*.json ./
  4. RUN npm install
  5. COPY . .