From 8e66a6d17662a468289e04d6b6c40d0ca4494fa2 Mon Sep 17 00:00:00 2001 From: Jamil RAICHOUNI Date: Wed, 6 Sep 2023 20:55:41 +0200 Subject: [PATCH] feat: Install Neovim in base image An editor like vim must be given. It is powerful and slim. Currently the Debian system pkg for Neovim is smaller than the one for vim. --- base/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/base/Dockerfile b/base/Dockerfile index dc06a073..fb5866a5 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -20,6 +20,7 @@ RUN apt-get update && \ python3-venv \ git-lfs \ unzip \ + neovim \ zip && \ rm -rf /var/lib/apt/lists/*