FROM node:20-slim WORKDIR /app RUN npm init -y && npm install express node-cache axios uuid COPY server.js . EXPOSE 7860 CMD ["node", "server.js"]