Closed justremember closed 2 years ago
This is a problem with Linux Mint users mentioned on the docker website ( https://docs.docker.com/engine/install/ubuntu/ )! To get around this (eg. for me using Mint 20.1 ulyssa), I had to change two things. Firstly, I had to change the Dockerfile ubuntu version from 19.10 to 20.04 (careful, there are two of these in the file) and I had to change inside the file at /etc/apt/sources.list.d/additional-repositories.list
"bionic" to "focal" (ie. the ubuntu equivalent version) and this solves the issue!
Additional side note, on the line RUN mkdir /etc/mono/registr
, I had to add a -p flag (ie. change to RUN mkdir -p /etc/mono/registr
) since the script kept complaining that the folder already existed!
After this, the script worked perfectly!
Thanks I'll check it out when I get back to my linux laptop. Is the /etc/apt/sources.list.d/additional-repositories.list
file in the docker image?
its the one on your own system! The file as mentioned contains a line that has to do with docker! I assume that docker gets its updated repositories from the link in the additional-repositories.list file!
This issue has been fixed by 35066222379951e43836361eb20b2950f517620e Upgraded ubuntu image version from eoan (EOL, hence the missing repositories) to impish