Spaces:
Runtime error
Runtime error
File size: 140 Bytes
fbde297 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM node:20
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN chmod -R 777 /app
EXPOSE 7860
USER root
CMD node index.js |