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

18 lines
463 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 openssh-server \
&& chmod +x /usr/sbin/startup.bash
CMD ["/usr/sbin/startup.bash"]