1
0

Add jump-box/Dockerfile
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-09-25 15:32:37 +00:00
parent 5478819d9a
commit 5883117aab

15
jump-box/Dockerfile Normal file
View File

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