From 432c57e8625a24dd1fb9d830be07f04460e0a1f8 Mon Sep 17 00:00:00 2001 From: engigu Date: Sat, 20 Dec 2025 13:45:35 +0800 Subject: [PATCH] feat: fix dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eb8abaa..3d4cccf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ RUN sed -i 's@deb.debian.org@mirrors.tuna.tsinghua.edu.cn@g' /etc/apt/sources.li && echo "${TZ}" > /etc/timezone \ && ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime \ && apt update \ - && apt install -y tzdata git gcc curl wget vim ca-certificates htop \ + && apt install -y tzdata git gcc curl wget vim ca-certificates procps htop \ && rm -rf /var/lib/apt/lists/* \ && curl -sSL https://gh-proxy.com/https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh -o /tmp/miniforge.sh \ && bash /tmp/miniforge.sh -b -p ${CONDA_DIR} \