Spaces:
Paused
Paused
File size: 156 Bytes
b702e2f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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
|