FROM node:20-slim WORKDIR /app ENV NODE_ENV=production ENV PORT=7860 COPY server.js ./server.js EXPOSE 7860 CMD ["node", "server.js"]