File size: 205 Bytes
a4c6590
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM python:3.10-slim-bullseye
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6  -y
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY app.py .
COPY model.onnx .
CMD python app.py