Install wget to fix image build (#231)

### What this PR does / why we need it?

Install `wget` to fix image build

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?
CI passed

---------

Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
This commit is contained in:
Yikun Jiang
2025-03-04 09:01:23 +08:00
committed by GitHub
parent b64ee7d346
commit 839dac8d60
2 changed files with 3 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && \
apt-get install -y python3-pip git vim net-tools && \
apt-get install -y python3-pip git vim wget net-tools && \
rm -rf /var/cache/apt/* && \
rm -rf /var/lib/apt/lists/*