added trusted proxies

This commit is contained in:
pranav-singhal 2026-01-27 00:14:43 +05:30
parent 620182242f
commit 261fa7a6bf

View File

@ -35,11 +35,23 @@ ENV NODE_ENV=production
# Install gosu for dropping privileges safely
RUN apt-get update && apt-get install -y --no-install-recommends gosu && rm -rf /var/lib/apt/lists/*
# Entrypoint script: fix /data permissions then drop to node user
# Entrypoint script: fix /data permissions, create Railway config, then drop to node user
RUN printf '#!/bin/sh\n\
if [ -d /data ]; then\n\
chown -R node:node /data 2>/dev/null || true\n\
fi\n\
# Create initial config with trustedProxies for Railway/cloud deployments\n\
if [ -n "$CLAWDBOT_STATE_DIR" ] && [ ! -f "$CLAWDBOT_STATE_DIR/clawdbot.json" ]; then\n\
mkdir -p "$CLAWDBOT_STATE_DIR"\n\
cat > "$CLAWDBOT_STATE_DIR/clawdbot.json" << EOF\n\
{\n\
"gateway": {\n\
"trustedProxies": ["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16", "100.64.0.0/10"]\n\
}\n\
}\n\
EOF\n\
chown node:node "$CLAWDBOT_STATE_DIR/clawdbot.json"\n\
fi\n\
exec gosu node "$@"\n' > /entrypoint.sh && chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]