FROM node:20 WORKDIR /app COPY . . RUN npm install EXPOSE 7860 CMD ["node", "index.js"]