From 003d63ca7aafafbe924ac66e9c036089fbef6326 Mon Sep 17 00:00:00 2001 From: l1shen <648952316@qq.com> Date: Fri, 13 Feb 2026 10:43:23 +0800 Subject: [PATCH 1/2] feat: remove build-essential --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a2b29c3..4a79a6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ENV LANG="C.UTF-8" # install system dependencies RUN apt-get update && \ - apt-get install -y --no-install-recommends git zsh curl wget sudo ca-certificates build-essential locales-all tar xz-utils uuid-runtime libtalloc-dev unzip openssh-client zstd watchman && \ + apt-get install -y --no-install-recommends git zsh curl wget sudo ca-certificates locales-all tar xz-utils uuid-runtime libtalloc-dev unzip openssh-client zstd watchman && \ apt-get clean && \ apt-get autoremove && \ rm -rf /var/lib/apt/lists/* From aeb0d7ba60677ca3835b2c6ec78032a5065aa741 Mon Sep 17 00:00:00 2001 From: l1shen <648952316@qq.com> Date: Fri, 13 Feb 2026 10:45:33 +0800 Subject: [PATCH 2/2] remove uuid-runtime --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4a79a6d..0ba142f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ENV LANG="C.UTF-8" # install system dependencies RUN apt-get update && \ - apt-get install -y --no-install-recommends git zsh curl wget sudo ca-certificates locales-all tar xz-utils uuid-runtime libtalloc-dev unzip openssh-client zstd watchman && \ + apt-get install -y --no-install-recommends git zsh curl wget sudo ca-certificates locales-all tar xz-utils libtalloc-dev unzip openssh-client zstd watchman && \ apt-get clean && \ apt-get autoremove && \ rm -rf /var/lib/apt/lists/*