FROM node:lts-alpine WORKDIR /app COPY package*.json ./ RUN npm i COPY . . EXPOSE 8787 CMD ["node", "index.js"]