Spaces:
Sleeping
Sleeping
File size: 387 Bytes
d13547b d276275 d13547b 7fc9335 d13547b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM shahrukhsiddiq/diffusion-api:latest
# Set working directory
WORKDIR /app
# Create writable cache folder
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
# Redirect Hugging Face and Transformers cache
ENV TRANSFORMERS_CACHE=/app/cache
ENV HF_HOME=/app/cache
# Expose FastAPI port
EXPOSE 8000
# Launch FastAPI
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "8000"]
|