fix(docker): add config_manager.py to Dockerfile and logger components

- Add COPY config_manager.py to Dockerfile so it's included in the image
- Add 'config_manager' to logger COMPONENTS list to enable logging

Fixes the ModuleNotFoundError and ValueError when importing config_manager
This commit is contained in:
2026-02-19 11:02:58 +02:00
parent 305605fde5
commit 9972edb06d
2 changed files with 3 additions and 0 deletions

View File

@@ -54,6 +54,7 @@ COPY bot.py .
COPY server_manager.py .
COPY command_router.py .
COPY config.py .
COPY config_manager.py .
COPY utils /app/utils
COPY commands /app/commands
COPY memory /app/memory