Buckets:
| FROM python:3.13-slim | |
| WORKDIR /app | |
| # Install system dependencies | |
| RUN apt-get update && apt-get install -y \ | |
| git \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # Copy requirements | |
| COPY requirements.txt . | |
| # Install Python dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt \ | |
| && pip install fastapi uvicorn httpx python-multipart | |
| # Copy application code | |
| COPY . . | |
| # Expose ports | |
| EXPOSE 8000 | |
| # Run API server | |
| CMD ["uvicorn", "api.research:app", "--host", "0.0.0.0", "--port", "8000"] | |
Xet Storage Details
- Size:
- 497 Bytes
- Xet hash:
- b8cf93f54de98a3789bf32d90cda94f54850277e85ce01bc5bc7b71fc3adc6b4
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.