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