e6935e0
1
2
3
4
5
6
7
8
FROM node:18 WORKDIR /app COPY package*.json ./ RUN npm install COPY . . ENV PORT=7860 EXPOSE 7860 CMD ["node", "index.js"]