chore: 调整脚本后台语法,改执行方式并设换行符

This commit is contained in:
begoniezhao
2025-08-11 16:16:21 +08:00
committed by lyingbug
parent ddcf5edf02
commit a347abf829
3 changed files with 3 additions and 2 deletions

1
.gitattributes vendored Normal file
View File

@@ -0,0 +1 @@
*.sh text eol=lf

View File

@@ -56,7 +56,7 @@ COPY services/docreader/scripts/ /app/scripts/
RUN ls -la /root/.paddlex/official_models
# 生成 protobuf 代码
RUN chmod +x /app/scripts/generate_proto.sh && /app/scripts/generate_proto.sh
RUN chmod +x /app/scripts/generate_proto.sh && bash /app/scripts/generate_proto.sh
# 运行阶段
FROM --platform=${PLATFORM} python:3.9-slim AS runner

View File

@@ -140,7 +140,7 @@ start_ollama() {
else
log_info "启动Ollama服务..."
export OLLAMA_HOST=0.0.0.0:11435
ollama serve & > /dev/null 2>&1
ollama serve > /dev/null 2>&1 &
# 等待服务启动
MAX_RETRIES=30