From eb4e47a73e90d90e1c524aeb3054356f53c865c7 Mon Sep 17 00:00:00 2001 From: omaroughriss Date: Tue, 1 Jul 2025 16:08:27 +0200 Subject: [PATCH] Minor update --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 880169bc..b6db09fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apk update && apk add openssh-client git ARG SSH_PRIVATE_KEY RUN mkdir -p /root/.ssh && \ - echo "${SSH_PRIVATE_KEY}" > /root/.ssh/id_rsa && \ + printf "%s" "${SSH_PRIVATE_KEY}" > /root/.ssh/id_rsa && \ chmod 600 /root/.ssh/id_rsa && \ eval "$(ssh-agent -s)" && \ ssh-add /root/.ssh/id_rsa && \