I have this simple docker file:
FROM ubuntu:eoan ENV DEBIAN_FRONTEND=noninteractive RUN apt update && apt install -y \ chromium-browser \ chromium-chromedriver
When I try to build it:
...Preparing to unpack .../00-chromium-browser_77.0.3865.120-0ubuntu1.19.10.1_amd64.deb ...=> Installing the chromium snap==> Checking connectivity with the snap store===> Unable to contact the store, trying every minute for the next 30 minutes
And it seems that it never reaches the said snap store.It works fine if the image is based on disco
instead of eoan
.It works fine on a physical machine.