Error: net/http: TLS handshake timeoutError: net/http: TLS handshake timeout
The TLS handshake with the Docker registry timed out.
Error: pull access denied for base imageThe base image specified in the FROM instruction could not be found or accessed.
The base image in the Dockerfile's FROM instruction does not exist, is misspelled, or is in a private registry requiring authentication. Docker Hub returns access denied for non-existent images.
Verify the image name and tag in the FROM instruction. Check Docker Hub for the correct image name. Log in if it is a private registry. Use specific tags instead of latest for reliability.
Error: net/http: TLS handshake timeoutThe TLS handshake with the Docker registry timed out.
Error: no space left on deviceThe Docker host has run out of disk space.
Exit Code 137The container was killed with SIGKILL (signal 9), commonly due to out-of-memory (OOM) conditions.
Error: read-only file systemAn attempt to write to the container's filesystem failed because it is mounted as read-only.
Cannot connect to the Docker daemonThe Docker client cannot communicate with the Docker daemon process.
Warning: build-arg not used in buildA --build-arg was passed to docker build but no matching ARG instruction was found in the Dockerfile.