change image from aplpine to node23-alpine
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 5m30s

This commit is contained in:
2026-01-25 16:40:16 +07:00
parent f557585d85
commit b99f1b6b90
2 changed files with 11 additions and 5 deletions

View File

@@ -21,5 +21,12 @@ iptables -t nat -A OUTPUT -p tcp -d 10.0.0.0/8 -j RETURN 2>/dev/null || true
iptables -t nat -A OUTPUT -p tcp -d 172.16.0.0/12 -j RETURN 2>/dev/null || true
iptables -t nat -A OUTPUT -p tcp -j REDIRECT --to-ports 12345 2>/dev/null || true
N8N_BIN="/usr/local/bin/n8n"
if [ ! -x "$N8N_BIN" ]; then
echo "n8n binary not found at $N8N_BIN"
exit 1
fi
# Start n8n
exec n8n
exec su-exec node "$N8N_BIN"