Minimal Docker setup that clones the official sqllogictest Fossil repository and copies the bundled test corpus into a local folder. Use it whenever you need a fresh snapshot of SQLite's sqllogictest cases.
Build the Docker image:
docker build -t slt-gen .Extract the upstream tests into a local test/ directory:
rm -rf test
mkdir test
docker run --rm -v "$PWD/test:/work/test" slt-genThe extracted corpus mirrors the upstream layout directly under test/.