11 lines
186 B
Docker
11 lines
186 B
Docker
FROM python:3.13.7-slim-buster
|
|
|
|
RUN apt-get update -y && apt-get install -y ffmpeg libopus0
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
CMD ["python3", "-u", "bot.py"]
|