Open codersguild opened 4 years ago
did you solved?i had same error
The docker build fails every time on this command.
RUN apt-get update && apt-get install -y software-properties-common locales
Error
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu60_60.2-3ubuntu3_amd64.deb Connection failed [IP: 91.189.88.173 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
How to get
libicu60_60.2-3ubuntu3_amd64.deb
? Any alternate workaround?
did you solved?i had same error
This seems to be a network configuration issue with docker. To solve I did the following:
Edit /etc/docker/daemon.json
:
{
"dns": ["192.10.0.2", "8.8.8.8"]
}
Then restart the docker service with sudo service docker restart
. Perhaps the Readme could be updated to reflect this.
I shall try this out
The docker build fails every time on this command.
Error
How to get
libicu60_60.2-3ubuntu3_amd64.deb
? Any alternate workaround?