Refactor code structure for improved readability and maintainability
This commit is contained in:
12
poc/Dockerfile.mock-llm
Normal file
12
poc/Dockerfile.mock-llm
Normal file
@@ -0,0 +1,12 @@
|
||||
# Mock LLM server for POC testing without real API calls
|
||||
FROM python:3.11-slim
|
||||
|
||||
RUN pip install --no-cache-dir fastapi uvicorn
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY mock_llm_server.py ./
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD ["uvicorn", "mock_llm_server:app", "--host", "0.0.0.0", "--port", "8080"]
|
||||
Reference in New Issue
Block a user