Spaces:
Running
Running
File size: 556 Bytes
5f83530 d503ebd 5f83530 d503ebd 5f83530 d503ebd 5f83530 d503ebd 5f83530 d503ebd 5f83530 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# β
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"]
|