Spaces:
Sleeping
Sleeping
| # β Use an official lightweight Python image | |
| FROM python:3.10-slim | |
| # β Set environment variables | |
| ENV TRANSFORMERS_CACHE=/app/cache | |
| ENV HF_HOME=/app/cache | |
| # β Set working directory | |
| WORKDIR /app | |
| # β Copy files | |
| COPY requirements.txt . | |
| COPY app.py . | |
| # β Install dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # β Create cache folder & set permissions | |
| RUN mkdir -p /app/cache && chmod -R 777 /app/cache | |
| # β Expose FastAPI port | |
| EXPOSE 7860 | |
| # β Run FastAPI | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] | |