| 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 |
| 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 |