FROM node:12.13.0-alpine RUN apk add --no-cache git COPY . /app WORKDIR /app RUN rm package-lock.json RUN npm install CMD ["npm", "start"]