Dockerfile

This commit is contained in:
2025-11-23 15:53:10 -05:00
parent 941114f13c
commit 1575ee2bec
3 changed files with 11 additions and 2 deletions

View File

@@ -1 +0,0 @@
FROM debian:bookworm

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.10
WORKDIR /usr/local/app
COPY . .
RUN pip install --no-cache-dir --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python3", "bot.py"]

View File

@@ -1 +1,2 @@
discord.py[voice]==2.6.4 discord.py[voice]==2.6.4
python-dotenv==1.2.1