FROM node:20-slim WORKDIR /app COPY server.js . COPY index.html . COPY conversations-*.json ./ EXPOSE 7860 CMD ["node", "server.js"]