Spaces:
Sleeping
Sleeping
| FROM huggingface/competitions:latest | |
| # Set the working directory (if not already set by the base image) | |
| WORKDIR /app | |
| # Copy your application files (optional if additional files are needed) | |
| COPY . . | |
| # Install Python dependencies | |
| COPY requirements.txt requirements.txt | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| CMD uvicorn competitions.app:app --host 0.0.0.0 --port 7860 --workers 1 |