|
Hello,
I am using python 3.8 on Pycharm.
Once installing owlready2==0.35 through pip command, the sqlite version installed is 3.36.0 (by running sqlite3.sqlite_version), and everything seems to work properly.
However, once installing owlready2==0.35 through the dockerfile below, the sqlite version installed is 3.7.17, which causes errors on running sqlite RECURSIVE commands, making the package unusable for me.
What could be causing such difference, and what actions are recommended to address this issue?
Thank you!
Dockerfile:
FROM public.ecr.aws/lambda/python:3.8
WORKDIR /work
COPY . .
COPY requirements.txt requirements_input_mapper.txt
RUN pip3 install -r requirements.txt
|