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"]