Spaces:
Sleeping
Sleeping
| # Use Python 3.13 slim image | |
| FROM python:3.13-slim | |
| # Set working directory | |
| WORKDIR /app | |
| # Install system dependencies | |
| RUN apt-get update && apt-get install -y \ | |
| build-essential \ | |
| curl \ | |
| git \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # Install uv | |
| COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv | |
| # Copy project files | |
| COPY pyproject.toml uv.lock ./ | |
| COPY src/ ./src/ | |
| # Install dependencies | |
| RUN uv sync --frozen | |
| # Expose port (default 8501, can be overridden) | |
| EXPOSE 8501 | |
| # Health check | |
| HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health | |
| # Run the application | |
| CMD ["sh", "-c", "uv run streamlit run src/legisqa_local/app.py --server.port=${PORT:-8501} --server.address=0.0.0.0"] |