Spaces:
Runtime error
Runtime error
FROM ai/deepseek-r1-distill-llama:8B-Q4_K_M | |
# Expose port 7860 (default for Hugging Face Spaces) | |
EXPOSE 7860 | |
# Set environment variables (adjust as needed) | |
ENV API_HOST=0.0.0.0 | |
ENV API_PORT=7860 | |
# Command to run the API (replace with the actual command from the image docs) | |
CMD ["python", "app.py"] |