I got a problem while creating a docker image using docker build -t image_name .
. When I execute it I get errors:
=> [internal] load build definition from Dockerfile 0.1s
=> => transferring dockerfile: 32B 0.0s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 2B 0.0s
=> ERROR [internal] load metadata for docker.io/library/java:8 0.2s
------
> [internal] load metadata for docker.io/library/java:8:
------
failed to solve with frontend dockerfile.v0: failed to create LLB definition: failed to authorize: rpc error: code = Unknown desc = failed to fetch anonymous token: Get https://auth.docker.io/token?scope=repository%3Alibrary%2Fjava%3Apull&service=registry.docker.io: net/http: TLS handshake timeout
Certain configuration or application protocol mismatches can lead to stalled connections. The TLS handshake protocol always expects the end of the connection configured as handshake role client to send the first message.
This recently happened for me when running a build script for earthly/earthly.
OS: Arch Linux 5.14.8-arch1-1
Docker from official repository: Docker version 20.10.8, build 3967b7d28e
DNS was misconfigured for me. For some reason, docker pull golang:1.16-alpine3.14
worked fine but was failing when running the build script. This answer on r/docker helped.
Adding a DNS nameserver to my /etc/resolv.conf
solved this issue for me:
cat /etc/resolv.conf
# Cloudflare
nameserver 1.1.1.1
1. Disable Buildkit
From this answer to Docker build: failed to fetch oauth token for openjdk?, this did not solve the issue since I believe buildkit was required for the script I was running:
export DOCKER_BUILDKIT=0
export COMPOSE_DOCKER_CLI_BUILD=0
2. Manually pull image
3. Authenticating with Docker
The error looked like something that might happen when I was unauthenticated with hub.docker.com. After logging in with docker login --username <username>
I still receieved the errors.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With