chore: dockerize bot (#1)

Co-authored-by: ErrorNoInternet <errornointernet@envs.net>
This commit is contained in:
MightyCoderX 2025-01-06 22:12:56 +01:00 committed by GitHub
parent eeca6ec5d9
commit dfe05cc548
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python:3.13-alpine
RUN apk --no-cache add ffmpeg opus
WORKDIR /bot
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "-OO", "main.py"]