Spaces:
Runtime error
Runtime error
| FROM python:3.14-slim | |
| # Install uv. | |
| COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ | |
| # Copy the application into the container. | |
| COPY . /app | |
| # Install the application dependencies. | |
| WORKDIR /app | |
| RUN uv sync --frozen --no-cache | |
| RUN chmod +x start.sh | |
| CMD ["./start.sh"] |