Claude Code commited on
Commit
377be5b
·
1 Parent(s): a9a9890

Claude Code: Fix PORT collision - remove hardcoded ENV PORT from Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -25,7 +25,7 @@ RUN mkdir -p /app/logs /app/.openclaw && \
25
  chmod +x /app/entrypoint.sh && \
26
  chmod 777 /app/logs /app/.openclaw
27
 
28
- ENV PORT=7860
29
  EXPOSE 7860
30
 
31
  # Use entrypoint for better startup logging
 
25
  chmod +x /app/entrypoint.sh && \
26
  chmod 777 /app/logs /app/.openclaw
27
 
28
+ # PORT is set by HuggingFace Spaces - no hardcoded ENV here to avoid collision
29
  EXPOSE 7860
30
 
31
  # Use entrypoint for better startup logging