10 lines
224 B
Text
10 lines
224 B
Text
|
FROM python:3.9-slim
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install ffmpeg -y
|
||
|
WORKDIR /musicbot
|
||
|
RUN mkdir -p cache
|
||
|
COPY requirements.txt requirements.txt
|
||
|
RUN pip install -r requirements.txt
|
||
|
COPY ari ari
|
||
|
CMD ["python3", "-m", "ari"]
|