detectmol / Dockerfile
raunakdoesml's picture
added app.py and dockerfile
a4c6590
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