File size: 314 Bytes
fb31bdd dbb9c86 fb31bdd |
1 2 3 4 5 6 7 8 9 10 11 |
# Use the pre-built image
FROM ghcr.io/xerxes-2/clewdr:latest
# Set environment variables for Hugging Face deployment
# Use PORT env var from Hugging Face or default to 7860
ENV CLEWDR_IP=0.0.0.0
ENV CLEWDR_PORT=${PORT:-7860}
ENV CLEWDR_NO_FS=TRUE
# Expose the port that Hugging Face expects
EXPOSE ${PORT:-7860} |