Closed kevincerro closed 4 months ago
Tryed to upgrade pdo_sqlite on my own without success. I cannot find where gets pdo_sqlite installed in bref source Dockerfiles
With AL2023 this will be solved because provides a more recent version of sqlite-devel
Yes AL2023 would come with dependency updates, however this will be a major version change for Bref (or at least an opt-in change).
Having sqlite work today (with current layers) is definitely something we want. It should work, it's interesting that you're facing issues 🤔 Do you know what specific query causes the problem?
Its possible to upgrade pdo_sqlite version in bref docker images?
Seems that installed version of pdo_sqlite in bref docker images are too old (3.7.17)
I'm encountering following error with phpunit tests
Trying in my host machine works because I have a more recent version of pdo_sqlite (3.46.0)
Sample dockerfile
Command to print pdo_sqlite version
php -r 'echo "SQLite version: " . SQLite3::version()["versionString"] . PHP_EOL;'