Part of my build pipeline is to download a specific version of Chrome (google-chrome-stable_81.0.4044.138-1_amd64.deb). My local build and automated build on GitHub are both suddenly failing due to the following error:
Step 26/30 : RUN wget --no-verbose -O /tmp/chrome.deb http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb
560 ---> Running in 718393c11bc4
561http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_81.0.4044.138-1_amd64.deb:
5622022-01-18 08:20:09 ERROR 404: Not Found.
563The command '/bin/sh -c wget --no-verbose -O /tmp/chrome.deb http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb && apt-get update && apt-get install -y /tmp/chrome.deb --no-install-recommends --allow-downgrades fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf && rm /tmp/chrome.deb' returned a non-zero code: 8
I’ve had zero issue with this part of the build for months and suddenly it’s falling over. Any idea what’s going on?
Also is there a workaround whilst this gets sorted out?