upd readme

This commit is contained in:
martin legrand
2025-04-16 22:20:30 +02:00
parent 7c4f283a05
commit 81b772df9a
6 changed files with 273 additions and 68 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY app.py .
COPY api.py .
COPY sources/ ./sources/
COPY prompts/ ./prompts/
COPY config.ini .
@@ -33,4 +33,4 @@ COPY config.ini .
EXPOSE 8000
# Run the application
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["uvicorn", "api:api", "--host", "0.0.0.0", "--port", "8000"]