broadcast/player/Dockerfile

18 lines
275 B
Docker

FROM python:3.11
LABEL author="Ashish D'Souza"
WORKDIR /code
ENTRYPOINT ["python", "main.py"]
ENV AUDIO_ROOT_PATH=/mnt/audio
RUN apt update --fix-missing
RUN apt install -y ffmpeg
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY audio /audio
COPY src .