Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Noticed that there still was an issue starting the backend when doing a clean Docker build. This was because of the following: * The default Python version on Alpine 3.19 is 3.11. * This means that system Python packages will be installed into `/usr/lib/python3.11/site-packages`. * We run Python 3.12 and are expecting Xapian to be installed into `/usr/lib/python3.12/site-packages`. Alternatively, we might have been able to change `PYTHONPATH` to `/usr/lib/python3.11/site-packages`, but updating to the latest Alpine version makes sense anyway.
- Loading branch information