assathe/data-analyst-agent2
0
1FROM python:3.10
2
3# Set working directory
4WORKDIR /app
5
6# Copy requirements and install
7COPY requirements.txt .
8RUN pip install --no-cache-dir -r requirements.txt
9
10# Copy everything
11COPY . .
12
13# Expose port
14EXPOSE 7860
15
16# Start the FastAPI app
17CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
18 