helmet-detection / Dockerfile
drkareemkamal's picture
Upload 11 files
7861a07 verified
raw
history blame contribute delete
237 Bytes
FROM nvcr.io/nvidia/tritonserver:23.02-py3
# Install dependencies
RUN pip install opencv-python && \
apt update && \
apt install -y libgl1 && \
rm -rf /var/lib/apt/lists/*
CMD ["tritonserver", "--model-repository=/models" ]