Unable to locate package cuda-command-line-tools-10-2 with apt-get when building Docker image for Jetpack 4.6

After I run “docker build --platform arm64 -f docker/Dockerfile -t alphafold .” I get the error of:

E: Unable to locate package cuda-command-line-tools-10-2
The command ‘/bin/bash -c apt-get update && apt-get install -y build-essential cmake cuda-command-line-tools-${CUDA/./-} git hmmer kalign tzdata wget && rm -rf /var/lib/apt/lists/*’ returned a non-zero code: 100

Here is the beginning of the Dockerfile.

ARG CUDA=10.2
FROM nvcr.io/nvidia/l4t-base:r32.6.1
# FROM directive resets ARGS, so we specify again (the value is retained if
# previously set).
ARG CUDA

# Use bash to support string substitution.
SHELL ["/bin/bash", "-c"]

RUN apt-get update && apt-get install -y \
      build-essential \
      cmake \
      cuda-command-line-tools-${CUDA/./-} \
      git \
      hmmer \
      kalign \
      tzdata \
      wget \
    && rm -rf /var/lib/apt/lists/*

Hi,

Could you switch to nvcr.io/nvidia/l4t-cuda:10.2.460-runtime container instead?

The CUDA library is installed within the container rather than mounting from the host.
And the cuda-command-line-tools-10.2 can be successfully located in this container.

Thanks.