From 45892739a5adbc6300ea89d138b44d628573c6eb Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 25 Mar 2026 14:23:09 -0400 Subject: [PATCH] chore(docker): add vim and nano to base image Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4f61a890..cc2a3e6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts-trixie-slim AS base ARG USER_UID=1000 ARG USER_GID=1000 RUN apt-get update \ - && apt-get install -y --no-install-recommends ca-certificates curl git jq procps python3 python3-pip \ + && apt-get install -y --no-install-recommends ca-certificates curl git jq nano procps python3 python3-pip vim \ && mkdir -p -m 755 /etc/apt/keyrings \ && wget -nv -O/etc/apt/keyrings/githubcli-archive-keyring.gpg https://cli.github.com/packages/githubcli-archive-keyring.gpg \ && echo "20e0125d6f6e077a9ad46f03371bc26d90b04939fb95170f5a1905099cc6bcc0 /etc/apt/keyrings/githubcli-archive-keyring.gpg" | sha256sum -c - \