ContainersWorkspace/ssh/Containerfile

12 lines
299 B
Text
Raw Permalink Normal View History

2024-11-04 15:29:00 +00:00
FROM registry.fedoraproject.org/fedora-minimal:40
RUN dnf5 install -y openssh-clients bash-completion fzf && \
dnf5 autoremove -y && \
dnf5 clean all
COPY bashrc.sh /root/.bashrc
WORKDIR /root
ENTRYPOINT ["/bin/bash", "-c", "echo \"$(ssh-agent -s)\" >/root/ssh_agent_eval && exec bash"]