14 lines
252 B
Docker
14 lines
252 B
Docker
FROM fredboat/lavalink:master
|
|
|
|
FROM python:3.8.6-slim
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN apt update && \
|
|
apt install -y --no-install-recommends ffmpeg
|
|
|
|
COPY README.md .
|
|
COPY src .
|
|
|
|
CMD [ "python", "-u", "./main.py" ]
|