From d0ffac36095227995fc891dd3a368e1fccc61447 Mon Sep 17 00:00:00 2001 From: gabriel-farache Date: Fri, 22 Dec 2023 10:12:22 +0100 Subject: [PATCH] fix: install openssh in order to be able to clone repo using ssh keys Signed-off-by: gabriel-farache --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2f7e043cf..3e83fd26c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,4 +54,8 @@ VOLUME ["/workspace"] #"/var/run/docker.sock" needs to be mounted for container based transformers to work with docker # Start app WORKDIR /workspace + +RUN microdnf install -y openssh openssh-clients +RUN mkdir -p $HOME/.ssh + CMD move2kube