How to build torchaudio in container nvcr.io/nvidia/pytorch:23.10-py3?

I want to use torchaudio in nvidia container from image nvcr.io/nvidia/pytorch:23.10-py3. But the building process always break down after compile start for a while.

Here is the compile command in my dockerfile

WORKDIR /usr/src/others_package
RUN git clone https://github.com/pytorch/audio.git
WORKDIR /usr/src/others_package/audio
RUN git checkout v2.1.0
RUN BUILD_SOX=1 USE_CUDA=1 USE_CUDNN=1 python setup.py develop