FROM node:18 WORKDIR /app RUN npm install RUN npm install express axios express-rate-limit COPY . . EXPOSE 7860 CMD [ "node", "server.js" ]