CoolFace
Apppublic

AgentraX/agent-saas-typescript-project-template

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5# Copy requirements and install dependencies6COPY requirements.txt .7RUN pip install --no-cache-dir -r requirements.txt8 9# Copy application code10COPY main.py .11 12# Expose port 7860 (required by Hugging Face Spaces)13EXPOSE 786014 15# Run the FastAPI app16CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]17