From 4a26c2bdfcdd4683f04250cc7bfe3b7764bccfcf Mon Sep 17 00:00:00 2001 From: "tao.chen" <93983997+taochen-ct@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:38:51 +0800 Subject: [PATCH] fix: curl not found --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9f9b7ca..adff561 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,12 @@ RUN uv pip install \ --requirements /tmp/requirements.txt -RUN curl -fsSL https://mimo.xiaomi.com/install | bash +RUN apt-get update && apt-get install -y --no-install-recommends \ + curl \ + ca-certificates \ + && rm -rf /var/lib/apt/lists/* \ + curl -fsSL https://mimo.xiaomi.com/install | bash + ENV PATH="/root/.local/bin:/usr/local/bin:${PATH}" RUN mino --version