I'm currently running into issues within the `python:3.11-buster` image whereby recent sqlite3 changes which added in v.3.35 of sqlite aren't working, e.g., sqrt
(https://antonz.org/sqlite-3-35/):
sqlite3.OperationalError: no such function: sqrt
I've added the following lines to my Dockerfile:
# Install sqlite3
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get -yq --no-install-recommends install sqlite3=3.* && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
mkdir -p /root/db
However, the issue still persists ...
If anyone could point me in the right direction to get mathematical functions to work I'd be eternally grateful ...