I am getting the below error while building an image
Step 1/10 : FROM ubuntu:14.04
Get https://registry-1.docker.io/v2/: net/http: request canceled while wai
I had the same problem and the following fix has worked for me: https://github.com/moby/moby/issues/22635#issuecomment-260063252
In my case I've added the following 2 "nameserver" lines to /etc/resolv.conf file.
before:
nameserver 127.0.0.53
after:
nameserver 8.8.8.8
nameserver 8.8.4.4
nameserver 127.0.0.53