From 4e28a95059167b39755501ca9a5608f0662f4575 Mon Sep 17 00:00:00 2001 From: Ollie Copping Date: Thu, 7 May 2026 08:47:12 +0100 Subject: [PATCH 1/4] Add lazygit to Dockerfile As of 25.10 you can now install lazygit with apt --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 679b3f0..5c51e05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ RUN apt-get update && \ curl \ gdb \ git \ + lazygit \ less \ locales \ man-db \ From fb8a99f02274963a446c6c4c57e8b564c941b774 Mon Sep 17 00:00:00 2001 From: Ollie Copping Date: Thu, 7 May 2026 08:59:48 +0100 Subject: [PATCH 2/4] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2d45867..ed655bd 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Features: - git, curl make and other build-essentials - uv for python environment management - ssh, gdb and busybox for runtime debugging +- lazygit for git power users ## How to use from the commandline From 8a9ed6d95ca8f0b1e35a7ce6507e6329e475cc7d Mon Sep 17 00:00:00 2001 From: Ollie Copping Date: Thu, 7 May 2026 09:04:10 +0100 Subject: [PATCH 3/4] Add packages for Claude integration --- Dockerfile | 3 +++ README.md | 1 + 2 files changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5c51e05..77f9fd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,11 +10,14 @@ RUN apt-get update && \ ca-certificates \ curl \ gdb \ + gh \ git \ + glab \ lazygit \ less \ locales \ man-db \ + nodejs \ ssh-client \ zsh && \ apt-get dist-clean diff --git a/README.md b/README.md index ed655bd..c9cae8d 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ Features: - uv for python environment management - ssh, gdb and busybox for runtime debugging - lazygit for git power users +- packages for seamless Claude integration ## How to use from the commandline From 73e63c03b45395d5350466546165ad48b813b82f Mon Sep 17 00:00:00 2001 From: Ollie Copping Date: Thu, 7 May 2026 09:07:21 +0100 Subject: [PATCH 4/4] Add just --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 77f9fd4..074fe24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ RUN apt-get update && \ gh \ git \ glab \ + just \ lazygit \ less \ locales \