FROM node:20.10 #FROM node:latest WORKDIR /app COPY . . EXPOSE 7860 #RUN apt update -y &&\ RUN chmod +x /app/index.js &&\ npm install CMD ["node", "index.js"]