aklbpsd/wealth-slide-api
0
1FROM python:3.92 3WORKDIR /code4 5# 1. Install dependencies6COPY requirements.txt .7RUN pip install --no-cache-dir -r requirements.txt8 9# 2. Download the model from Hugging Face Hub10RUN wget https://huggingface.co/aklbpsd/wealth-slide-model/resolve/main/wealth_slide_classifier.pkl11 12# 3. Copy all source code (e.g., app.py, helper scripts, etc.)13COPY . .14 15# 4. Run the FastAPI server16CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]17 