Spaces:
No application file
No application file
| FROM python:3.11-slim | |
| WORKDIR /usr/src/discord_bot | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| CMD ["python", "discord_bot.py"] | |
| FROM python:3.11-slim | |
| WORKDIR /usr/src/discord_bot | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| CMD ["python", "discord_bot.py"] | |