File size: 274 Bytes
7589132
 
c66f90e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM nvcr.io/nvidia/pytorch:23.12-py3

RUN pip install ultralytics
RUN pip install streamlit
RUN pip install opencv-python==4.6.0.66
RUN pip install Pillow==10.3.0

RUN apt update && apt install fonts-dejavu

EXPOSE 8501
CMD streamlit run app.py \
    --server.headless true