FROM node:20-bullseye-slim WORKDIR /app COPY package*.json ./ RUN npm install COPY . . EXPOSE 3000 EXPOSE 3700 CMD ["npm", "start"]