Jordan Pierce
initial commit
6b38cd2
raw
history blame
No virus
182 Bytes
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" ]