From e4ce6f6de9645ff43500ce8c0202cd2f05cd03ad Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Fri, 25 Sep 2026 15:41:13 +0000 Subject: [PATCH] Update jump-box/Dockerfile --- jump-box/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/jump-box/Dockerfile b/jump-box/Dockerfile index 13f4732..8707dbf 100644 --- a/jump-box/Dockerfile +++ b/jump-box/Dockerfile @@ -1,15 +1,17 @@ FROM fedora:44 -# TODO: claude CLI, k8s client +# TODO: k8s client ENV TARGET_USER=garrettmills ENV TARGET_UID=1000 ENV TARGET_GID=1000 +COPY startup.bash /usr/sbin/startup.bash + 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 + && chmod +x /usr/sbin/startup.bash -CMD ["tail", "-f", "/var/log/container-stdout.log"] +CMD ["/usr/sbin/startup.bash"]