clewdr / Dockerfile
zheng1590's picture
Upload Dockerfile
035d6d4 verified
raw
history blame contribute delete
292 Bytes
# 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}
# Expose the port that Hugging Face expects
EXPOSE ${PORT:-7860}