Spaces:
Paused
Paused
| FROM python:3.10 | |
| WORKDIR /app | |
| RUN chmod 777 /app | |
| COPY requirements.txt . | |
| RUN pip3 install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| CMD nohup python3 bot.py & | |
| FROM python:3.10 | |
| WORKDIR /app | |
| RUN chmod 777 /app | |
| COPY requirements.txt . | |
| RUN pip3 install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| CMD nohup python3 bot.py & | |