FROM node:13-alpine WORKDIR /app COPY package.json yarn.lock ./ RUN yarn install COPY src src/ COPY data data/ CMD ["node", "src/index.js"]