1
File size: 292 Bytes
8c4ba2b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# 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}