nvcr.io/nvidia/l4t-base:r32.2 not found

I am following steps in following page to build tx2 docker image on x86:

Here is my Dockerfile:

FROM nvcr.io/nvidia/l4t-base:r32.2

RUN apt-get update && apt-get install -y --no-install-recommends make g++
COPY ./samples /tmp/samples

WORKDIR /tmp/samples/1_Utilities/deviceQuery
RUN make clean && make

I met following error:

Sending build context to Docker daemon    222MB
Step 1/6 : FROM nvcr.io/nvidia/l4t-base:r32.2
error parsing HTTP 408 response body: unexpected end of JSON input: ""

It seems the base image is not available. Any suggestion?

Hi,

I can access the base image without issue.
Have you installed the nvidia-docker first?
[url]Frequently Asked Questions · NVIDIA/nvidia-docker Wiki · GitHub

Thanks.