Error: image prune already in progressError: image prune already in progress
A Docker image prune operation is already running.
Error: target stage not found in DockerfileThe specified build target does not match any stage name in the Dockerfile.
You used --target with docker build, but the specified stage name does not exist in the Dockerfile. The stage may be misspelled or the Dockerfile may have changed.
Check the Dockerfile for stage names (FROM ... AS stage-name). Verify the --target value matches a stage name exactly (case-sensitive). List stages: grep 'FROM.*AS' Dockerfile.
Error: image prune already in progressA Docker image prune operation is already running.
Exit Code 126The container's command was found but could not be executed.
Error: ENTRYPOINT not foundThe entrypoint binary or script specified in the image does not exist.
Error: dial tcp: lookup registry-1.docker.io: no such hostDocker cannot reach the container registry to pull or push images.
Error: no such deviceA device specified with --device does not exist on the host.
Exit Code 130The container was terminated by Ctrl+C (SIGINT, signal 2).