Docker image build stuck, it seems there is a loop build

hey, I am a docker noob, and this is my Dockerfile,

from node:16
expose 8888

and build it with sudo docker image build . -t koa-demo
and I found that the progress was always stuck, you can check it out

it seems that the docker repeat pulling file, what’s going on ?

ps, this is my /etc/daemon.json

{
    "registry-mirrors": [
	"https://docker.m.daocloud.io",
	"https://docker.mirrors.ustc.edu.cn",
	"https://dockerproxy.com",
	"https://docker.nju.edu.cn"
    ]
}

ps of ps: I use arch linux, with Huawei Matebook 14, and this is uname -a
Linux archlinux 6.1.64-1-lts #1 SMP PREEMPT_DYNAMIC Tue, 28 Nov 2023 19:37:35 +0000 x86_64 GNU/Linux

oh shit, the missing of pigz matters, just sudo pacman -S pigz is ok
this problem is fixed