4 lines
242 B
Bash
Executable File
4 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
# 创建临时容器检查镜像内容
|
|
kubectl run test-image-content --rm -i --image=agnettaiji.azurecr.io/ai-agents/search-agent:v2.0-1768476670 --restart=Never -- sh -c "head -20 /app/search_agent.py | grep -E '^from|^import'"
|