FROM node:18 WORKDIR /app COPY package.json . COPY index.js . RUN npm install EXPOSE 7860 ENV PORT=7860 CMD ["node", "index.js"]