mirror of
https://github.com/deadcxap/YandexMusicDiscordBot.git
synced 2026-01-08 09:31:47 +03:00
15 lines
297 B
Docker
15 lines
297 B
Docker
FROM python:3.13-slim
|
|
|
|
RUN apt-get update && apt-get install -y ffmpeg && apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY MusicBot /app/MusicBot
|
|
|
|
ENV PYTHONPATH=/app
|
|
|
|
CMD ["python", "./MusicBot/main.py"]
|