File size: 301 Bytes
6d296d4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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"]