FROM node:22 WORKDIR /app RUN apt-get update && apt-get install -y nano && rm -rf /var/lib/apt/lists/* COPY . . RUN npm install express axios cors multer fs-extra RUN chmod -R 777 /app EXPOSE 7860 CMD ["node", "server.js"]