🐛 Bug修复
Ubuntu System Information / show-system-info (push) Successful in 38s Details

This commit is contained in:
csh 2025-12-09 16:23:17 +08:00
parent 0e89b21c41
commit eaedcd3bb2
3 changed files with 3 additions and 4 deletions

View File

@ -62,10 +62,10 @@ jobs:
- name: 显示网络信息 - name: 显示网络信息
run: | run: |
echo "===== 网络接口 =====" echo "===== 网络接口 ====="
ip addr show cat /proc/net/dev
echo "" echo ""
echo "===== 路由表 =====" echo "===== 路由表 ====="
ip route show cat /proc/net/route
echo "" echo ""
echo "===== DNS 配置 =====" echo "===== DNS 配置 ====="
cat /etc/resolv.conf cat /etc/resolv.conf

View File

@ -33,8 +33,6 @@ RUN pacman -Syu --noconfirm && \
supervisor \ supervisor \
qemu-user-static \ qemu-user-static \
qemu-user-static-binfmt \ qemu-user-static-binfmt \
docker \
docker-buildx \
&& pacman -Scc --noconfirm && pacman -Scc --noconfirm
# AUR 用户paru 需非 root 运行) # AUR 用户paru 需非 root 运行)

View File

@ -18,6 +18,7 @@ RUN apt-get update && apt-get install -y \
jq \ jq \
python3 \ python3 \
python3-yaml \ python3-yaml \
lsb-release \
supervisor \ supervisor \
ca-certificates \ ca-certificates \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*