1
0
Files
misc-containers/jump-box/Dockerfile

18 lines
463 B
Docker
Raw Normal View History

2026-09-25 15:32:37 +00:00
FROM fedora:44
2026-09-25 15:41:13 +00:00
# TODO: k8s client
2026-09-25 15:32:37 +00:00
ENV TARGET_USER=garrettmills
ENV TARGET_UID=1000
ENV TARGET_GID=1000
2026-09-25 15:41:13 +00:00
COPY startup.bash /usr/sbin/startup.bash
2026-09-25 15:32:37 +00:00
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 \
2026-09-25 17:18:30 +00:00
coreutils util-linux openssh-server \
2026-09-25 15:41:13 +00:00
&& chmod +x /usr/sbin/startup.bash
2026-09-25 15:32:37 +00:00
2026-09-25 15:41:13 +00:00
CMD ["/usr/sbin/startup.bash"]