The bind-mounted node_modules from macOS contains darwin-arm64 native binaries which don't work in the Linux container. Run npm install on container startup to get the correct platform binaries. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
1.6 KiB
Bash
Executable File
35 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# ── Git identity ─────────────────────────────────────────────────────
|
|
# Agents commit code inside the container. Without a git identity,
|
|
# commits fail or use garbage defaults. Fail loudly at startup so the
|
|
# operator knows immediately.
|
|
if [ -z "$GIT_USER_NAME" ]; then
|
|
echo "FATAL: GIT_USER_NAME is not set. Export it in your environment or docker-compose.yml." >&2
|
|
exit 1
|
|
fi
|
|
if [ -z "$GIT_USER_EMAIL" ]; then
|
|
echo "FATAL: GIT_USER_EMAIL is not set. Export it in your environment or docker-compose.yml." >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Use GIT_AUTHOR/COMMITTER env vars instead of git config --global,
|
|
# so the root filesystem can stay read-only (no ~/.gitconfig write).
|
|
export GIT_AUTHOR_NAME="$GIT_USER_NAME"
|
|
export GIT_COMMITTER_NAME="$GIT_USER_NAME"
|
|
export GIT_AUTHOR_EMAIL="$GIT_USER_EMAIL"
|
|
export GIT_COMMITTER_EMAIL="$GIT_USER_EMAIL"
|
|
|
|
# ── Frontend native deps ────────────────────────────────────────────
|
|
# The project repo is bind-mounted from the host, so node_modules/
|
|
# may contain native binaries for the wrong platform (e.g. darwin
|
|
# binaries on a Linux container). Reinstall to get the right ones.
|
|
if [ -d /workspace/frontend ] && [ -f /workspace/frontend/package.json ]; then
|
|
echo "Installing frontend dependencies for container platform..."
|
|
cd /workspace/frontend && npm install --prefer-offline 2>/dev/null || true
|
|
cd /workspace
|
|
fi
|
|
|
|
exec "$@"
|