finbert-sentiment / Dockerfile
hariharan220's picture
Update Dockerfile
d503ebd verified
raw
history blame
556 Bytes
# βœ… 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"]