mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:41:09 +02:00
fix(mana-llm): copy aliases.yaml into Docker image
main.py's lifespan handler loads `Path(__file__).parent.parent / 'aliases.yaml'` (= /app/aliases.yaml) on startup. The Dockerfile only copied `src/`, so prod containers always crashlooped on first start with `AliasConfigError: alias config not found at /app/aliases.yaml` — which is why mana-llm has been silently absent from prod. Surfaced today after a manual `gh workflow run cd-macmini.yml -f service= mana-llm` actually attempted to start the container instead of relying on a long-stale image. Tested locally: container now starts cleanly, /health returns 200, and `/v1/aliases` lists the configured chains. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
34b1690ea4
commit
164d5dab8b
1 changed files with 5 additions and 1 deletions
|
|
@ -23,8 +23,12 @@ RUN useradd -m -u 1000 appuser
|
|||
# Copy installed packages from builder
|
||||
COPY --from=builder /root/.local /home/appuser/.local
|
||||
|
||||
# Copy application code
|
||||
# Copy application code + alias config. `aliases.yaml` is loaded by
|
||||
# main.py's lifespan handler from `Path(__file__).parent.parent /
|
||||
# 'aliases.yaml'` = /app/aliases.yaml. Without it the FastAPI app
|
||||
# raises AliasConfigError on startup and the container crashloops.
|
||||
COPY --chown=appuser:appuser src/ ./src/
|
||||
COPY --chown=appuser:appuser aliases.yaml ./aliases.yaml
|
||||
|
||||
# Set environment
|
||||
ENV PATH=/home/appuser/.local/bin:$PATH
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue