broadcast/player/Dockerfile

18 lines
275 B
Docker
Raw Permalink Normal View History

2023-11-05 16:42:03 -05:00
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 .