File size: 371 Bytes
12b350f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.9

# Install FFmpeg
RUN apt-get update && apt-get install -y ffmpeg

WORKDIR /code

# Create the directory and set permissions
RUN mkdir -p /tmp/dash/test_stream && chmod 777 /tmp/dash/test_stream

COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

COPY . /code

CMD ["python", "validator.py"]