PearlGreen/P
0
1# Use the pre-built image2FROM ghcr.io/xerxes-2/clewdr:latest3 4# Set environment variables for Hugging Face deployment5# Use PORT env var from Hugging Face or default to 78606ENV CLEWDR_IP=0.0.0.07ENV CLEWDR_PORT=${PORT:-7860}8 9# Expose the port that Hugging Face expects10EXPOSE ${PORT:-7860}