File size: 209 Bytes
f856ca5
 
 
 
 
 
 
 
 
 
 
 
 
b1ff431
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:latest

WORKDIR /app
COPY . .

RUN pip install -r requirements.txt

RUN apt-get update && \
    apt-get install -y ffmpeg && \
    apt-get clean

EXPOSE 8000:8000

CMD ["python", "-u", "server.py"]