deepseek-r1-api / Dockerfile
likhonsheikh's picture
Create Dockerfile
6d296d4 verified
raw
history blame contribute delete
301 Bytes
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"]