From 049cf7b277617712fe86715ed4fd83d142ec5aae Mon Sep 17 00:00:00 2001 From: Benjamin Du Date: Sun, 16 Nov 2025 17:04:44 -0800 Subject: [PATCH 1/2] add env variable VISUAL; do not install bash-completion --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bd7713a..fa09435 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,13 +11,14 @@ WORKDIR /workdir COPY scripts /scripts ENV EDITOR=nvim +ENV VISUAL=nvim RUN apt-get update -y \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ sudo \ pkg-config software-properties-common apt-transport-https \ fd-find file zip \ tzdata locales \ - bash-completion man-db \ + man-db \ git openssh-client \ rsync curl \ && curl -sSL https://raw.githubusercontent.com/legendu-net/icon/main/install_icon.sh | bash \ From 2d660cafae6da91db857dd5fd8601c9002ce63e4 Mon Sep 17 00:00:00 2001 From: Benjamin Du Date: Sun, 16 Nov 2025 17:12:09 -0800 Subject: [PATCH 2/2] install less as well --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fa09435..d7046b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update -y \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ sudo \ pkg-config software-properties-common apt-transport-https \ - fd-find file zip \ + fd-find file zip less \ tzdata locales \ man-db \ git openssh-client \