zhuzizyf
2023-03-03 1a39b6f981d2cf5c8066d7fa4d38c58bccbbfe13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM nvcr.io/nvidia/tritonserver:23.01-py3
# https://docs.nvidia.com/deeplearning/frameworks/support-matrix/index.html
# Please choose previous tritonserver:xx.xx if you encounter cuda driver mismatch issue
 
LABEL maintainer="NVIDIA"
LABEL repository="tritonserver"
 
RUN apt-get update  && apt-get -y install \
    python3-dev \
    cmake \
    libsndfile1
 
RUN pip3 install kaldifeat pyyaml
 
# Dependency for client
RUN pip3 install soundfile grpcio-tools tritonclient pyyaml
WORKDIR /workspace