76a9f57 94e00eb 76a9f57 94e00eb 76a9f57 c057626 76a9f57
1
2
3
4
5
6
7
8
9
10
FROM node:18 WORKDIR /app COPY package.json ./ RUN npm install COPY . . RUN chmod -R 777 /app EXPOSE 7860 USER root CMD ["node", "index.js"]