costix / Dockerfile
Mubarak-finopsly's picture
Update Dockerfile
4cee414 verified
raw
history blame contribute delete
508 Bytes
# Use private Hugging Face Space image as base
FROM registry.hf.space/mubarak-finopsly-costix-backend:latest
# Set environment variables (will be overridden via HF Variables & Secrets)
ENV OPENAI_API_KEY=""
ENV LANGSMITH_API_KEY=""
ENV LANGSMITH_TRACING=true
ENV LANGSMITH_ENDPOINT=https://api.smith.langchain.com
ENV LANGSMITH_PROJECT=costix-python-hugging-face
# Expose Gradio port
EXPOSE 7860
# Optionally override CMD if needed (else will use the one in the private image)
# CMD ["python3", "app.py"]