File size: 182 Bytes
a1d71d0
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.7

RUN apt-get update \
    && apt-get install ffmpeg libsm6 libxext6 -y

RUN pip install yolov5 tator gradio

COPY . ./

CMD [ "python", "-u", "./tator_inference.py" ]