1
0
Files
misc-containers/jump-box/Dockerfile
Garrett Mills e4ce6f6de9
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update jump-box/Dockerfile
2026-09-25 15:41:13 +00:00

18 lines
448 B
Docker

FROM fedora:44
# 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 \
&& chmod +x /usr/sbin/startup.bash
CMD ["/usr/sbin/startup.bash"]