helmet_detecetion / Dockerfile
drkareemkamal's picture
Upload 9 files
fcc36c6 verified
raw
history blame contribute delete
245 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" ]