ari/Dockerfile

10 lines
224 B
Text
Raw Normal View History

2022-08-21 23:22:12 +02:00
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"]