Commit 3b50327
committed
LCORE-1872: Fix llama-stack container startup issues
Fixes two issues preventing llama-stack container from starting:
1.SQLite compatibility error - Switch base image from ubi9/ubi-minimal to ubi9/python-312.
The minimal image ships with SQLite < 3.30.0 which lacks sqlite3_deserialize support required
by Python 3.12's _sqlite3 module. The python-312 base image includes a compatible SQLite version
and properly configured Python dependencies.
2.Read-only filesystem error - Config enrichment script now writes to /tmp/enriched-run.yaml
instead of /opt/app-root/run.yaml. The latter is mounted read-only from the host, causing OSError
when the enrichment script attempts to write the enriched configuration.
Signed-off-by: Anik Bhattacharjee <anbhatta@redhat.com>1 parent bd6e112 commit 3b50327
2 files changed
Lines changed: 7 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | | - | |
| 1 | + | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
7 | | - | |
8 | | - | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
0 commit comments