ContainersWorkspace/ssh/Containerfile
Maciej Lebiest cc4ce82ec0
All checks were successful
Build images / build-images-arm64 (push) Successful in 12m21s
Build images / build-images-amd64 (push) Successful in 15m14s
Build images / update-images-manifests (push) Successful in 40s
ssh image
2024-11-04 16:29:00 +01:00

11 lines
299 B
Docker

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