From 5883117aabbd4b5353baea4ef827c53a2013e592 Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Fri, 25 Sep 2026 15:32:37 +0000 Subject: [PATCH] Add jump-box/Dockerfile --- jump-box/Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 jump-box/Dockerfile diff --git a/jump-box/Dockerfile b/jump-box/Dockerfile new file mode 100644 index 0000000..13f4732 --- /dev/null +++ b/jump-box/Dockerfile @@ -0,0 +1,15 @@ +FROM fedora:44 + +# TODO: claude CLI, k8s client + +ENV TARGET_USER=garrettmills +ENV TARGET_UID=1000 +ENV TARGET_GID=1000 + +RUN dnf install -y \ + zip unzip curl tar vim htop fish stow git openssh-clients gnupg2 make nodejs \ + procps-ng rsync screen sudo which autojump hostname jq the_silver_searcher wget \ + coreutils util-linux \ + && chown $TARGET_UID:$TARGET_GID /var/log/container-stdout.log + +CMD ["tail", "-f", "/var/log/container-stdout.log"]