File size: 159 Bytes
1c2124d
 
 
d789898
1c2124d
 
 
1
2
3
4
5
6
7
FROM node:20-slim
WORKDIR /app
COPY . .
RUN npm install uuid form-data fs-extra multer express axios
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["node", "index.js"]