shruti / Dockerfile
wandererupak's picture
Create Dockerfile
b788ffd verified
# 1. Pull your exact pre-built image from Docker Hub!
FROM wandererupak/shruti:v1
# 2. Tell Hugging Face we are using their required port
EXPOSE 7860
# 3. Start the API on port 7860 instead of 8000
CMD ["uv", "run", "fastapi", "run", "app/main.py", "--port", "7860", "--host", "0.0.0.0"]