🚀 Add feature: Implement content retrieval system with Milvus and Attu in docker-compose.yml with relevant environment variables

This commit is contained in:
François Pelletier 2025-05-11 14:21:57 -04:00
parent 082ca6c638
commit 41299d4bf1
14 changed files with 96 additions and 35 deletions

View file

@ -5,7 +5,7 @@ FROM python:3.13-slim
WORKDIR /app
# Expose the port the app will run on
EXPOSE 5000
EXPOSE 8080
# Copy the current directory contents into the container
COPY . .
@ -14,4 +14,4 @@ COPY . .
RUN pip install --no-cache-dir -r requirements.txt
# Command to run the app using Uvicorn
CMD ["uvicorn", "main:app", "--reload", "--host", "0.0.0.0", "--port", "5000"]
CMD ["uvicorn", "main:app", "--reload", "--host", "0.0.0.0", "--port", "8080"]