Spaces:
Sleeping
Sleeping
File size: 155 Bytes
4fd7b58 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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 && node bot.js |