From 2d7a1b805b7bbe6ae428dceb6f9c3d02a56b138c Mon Sep 17 00:00:00 2001 From: Sebastian Lenzlinger Date: Sun, 5 Jan 2025 00:02:54 +0100 Subject: [PATCH] Do not install vim or emacs, use neovim instead for the image --- Containerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 9e921f3..6ce4838 100644 --- a/Containerfile +++ b/Containerfile @@ -9,12 +9,12 @@ ENV DEBIAN_FRONTEND=noninteractive # Copy custom configuration files COPY dot_rizinrc /root/.rizinrc -# Install dependencies and tools +# Install dependencies and tools, including Neovim RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential jq strace ltrace curl wget rubygems gcc dnsutils \ - netcat-traditional gcc-multilib net-tools vim gdb gdb-multiarch \ + netcat-traditional gcc-multilib net-tools neovim gdb gdb-multiarch \ python3-full python3-pip python3-dev libssl-dev libffi-dev wget git make \ - procps libpcre3-dev libdb-dev libxt-dev libxaw7-dev emacs-nox tmux && \ + procps libpcre3-dev libdb-dev libxt-dev libxaw7-dev tmux && \ pip3 install --break-system-packages capstone requests pwntools r2pipe keystone-engine \ unicorn ropper meson ninja && \ mkdir /tools && \