9 lines
224 B
Docker
9 lines
224 B
Docker
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"]
|