93 lines
2.5 KiB
Bash
93 lines
2.5 KiB
Bash
#!/bin/sh
|
||
set -e
|
||
export LANG=C.UTF-8
|
||
export LC_ALL=C.UTF-8
|
||
|
||
export MISE_HIDE_UPDATE_WARNING=1
|
||
|
||
# 日志输出格式
|
||
COLOR_PREFIX="\033[1;36m[Entrypoint]\033[0m"
|
||
log() {
|
||
printf "${COLOR_PREFIX} %s\n" "$1"
|
||
}
|
||
|
||
MISE_DIR="/app/envs/mise"
|
||
|
||
log "Starting environment initialization..."
|
||
|
||
# ============================
|
||
# 创建基础目录
|
||
# ============================
|
||
mkdir -p \
|
||
/app/data \
|
||
/app/data/scripts \
|
||
/app/configs \
|
||
/app/envs
|
||
|
||
if [ -d "/app/example" ]; then
|
||
mkdir -p /app/data/scripts/example
|
||
rsync -a --ignore-existing /app/example/ /app/data/scripts/example/ || true
|
||
log "Example scripts synced to /app/data/scripts/example"
|
||
else
|
||
log "No example directory found, skipping example sync"
|
||
fi
|
||
|
||
# ============================
|
||
# Mise 环境初始化
|
||
# ============================
|
||
# 始终尝试同步基础环境(以补充用户挂载卷中可能缺失的文件,如 config.toml)
|
||
mkdir -p "$MISE_DIR"
|
||
if [ -d "/opt/mise-base" ]; then
|
||
log "Syncing mise environment from base..."
|
||
# 使用 rsync 同步: -a 归档模式, --ignore-existing 不覆盖已存在文件
|
||
rsync -a --ignore-existing /opt/mise-base/ "$MISE_DIR/" || true
|
||
log "Mise environment synced"
|
||
else
|
||
log "No base mise environment found, skipping sync"
|
||
fi
|
||
|
||
# ============================
|
||
# 环境变量注入
|
||
# ============================
|
||
export MISE_DATA_DIR="$MISE_DIR"
|
||
export MISE_CONFIG_DIR="$MISE_DIR"
|
||
export PATH="$MISE_DIR/shims:$MISE_DIR/bin:$PATH"
|
||
|
||
log "Mise PATH configured, verifying runtimes..."
|
||
|
||
# 默认启用 Python 镜像源
|
||
export PIP_INDEX_URL=${PIP_INDEX_URL:-https://pypi.org/simple}
|
||
|
||
# Node 内存限制
|
||
export NODE_OPTIONS="--max-old-space-size=256"
|
||
export PYTHONPATH=/app/data/scripts:$PYTHONPATH
|
||
|
||
# ============================
|
||
# 打印确认 (增加超时防护,防止这里卡死)
|
||
# ============================
|
||
log "Checking mise..."
|
||
log " - mise: $(mise --version 2>/dev/null | head -n 1 || echo "not found")"
|
||
|
||
log "Checking python..."
|
||
log " - python: $(python --version 2>&1 | head -n 1 || echo "not found")"
|
||
|
||
log "Checking node..."
|
||
log " - node: $(node --version 2>&1 | head -n 1 || echo "not found")"
|
||
|
||
# 延迟获取 NODE_PATH,避免同步阻塞启动
|
||
log "Checking npm..."
|
||
log " - npm: $(npm --version 2>&1 | head -n 1 || echo "not found")"
|
||
|
||
# ============================
|
||
# 将 baihu 注册到全局命令
|
||
# ============================
|
||
ln -sf /app/baihu /usr/local/bin/baihu
|
||
|
||
# ============================
|
||
# 启动应用
|
||
# ============================
|
||
printf "\n\033[1;32m>>> Environment setup complete. Starting Baihu Server...\033[0m\n\n"
|
||
|
||
cd /app
|
||
exec ./baihu server
|