From fd4a9d32b7f3b85b776e37e26ea5e7f57929b665 Mon Sep 17 00:00:00 2001 From: omaroughriss Date: Tue, 1 Jul 2025 16:11:26 +0200 Subject: [PATCH] Minor update --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b6db09fe..880169bc 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 && \ - printf "%s" "${SSH_PRIVATE_KEY}" > /root/.ssh/id_rsa && \ + echo "${SSH_PRIVATE_KEY}" > /root/.ssh/id_rsa && \ chmod 600 /root/.ssh/id_rsa && \ eval "$(ssh-agent -s)" && \ ssh-add /root/.ssh/id_rsa && \