sqlite3 package install failing

Hi,

Up until recently, I was able to install the sqlite3 cli in my dotnet docker app using the instructions here. Now I seem to be getting stuck with the following error:

RUN apt-get update && apt-get install -y software-properties-common && add-apt-repository ‘deb Index of /debian sid main’ && apt-get update && apt-get install -y openssl sqlite3:
18.67 Reading state information…
18.98 Some packages could not be installed. This may mean that you have
18.98 requested an impossible situation or if you are using the unstable
18.98 distribution that some required packages have not yet been created
18.98 or been moved out of Incoming.
18.98 The following information may help to resolve the situation:
18.98
18.98 The following packages have unmet dependencies:
19.25 libreadline8t64 : Breaks: libreadline8 (< 8.2-3.1)
19.29 E: Unable to correct problems, you have held broken packages.

For now I am just leaving the package out of my build, but how can I fix this issue?

Can you explain why you are doing that? Debian sid is unstable… at times including it is a necessary evil if you need a newer release than something that is considered stable, but the downside is that that release may include packages that are incompatible with others that you have installed.

I see. I can’t honestly remember why that’s in there, but I removed it and everything works as expected. Thank you!