centiMent / Dockerfile
carpeadiam's picture
Update Dockerfile
f346427 verified
raw
history blame contribute delete
349 Bytes
FROM python:3.9-slim
WORKDIR /app
# Create a cache directory with proper permissions
ENV TRANSFORMERS_CACHE=/app/cache
ENV HF_HOME=/app/cache
RUN mkdir -p /app/cache && chmod 777 /app/cache
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py", "--host=0.0.0.0", "--port=7860"]