From ebc7efd62f80ff69f972f2b022eae589f0f77c55 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Thu, 29 Jan 2026 11:58:36 +0100 Subject: [PATCH] Add ssh key to Dockerfile.production for tests Change-Id: I1849a8170779b29e88af515c0d7c2b41694e6130 Signed-off-by: garciadeblas --- Dockerfile.production | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile.production b/Dockerfile.production index 4f8b516..5fffd7d 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -149,4 +149,6 @@ ENV OSM_RSA_FILE=/root/osm_id_rsa ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8 -ENTRYPOINT [ "/robot-systest/run_test.sh"] +RUN cat /dev/zero | ssh-keygen -t rsa -q -N "" > /dev/null + +ENTRYPOINT [ "/bin/sh" ] -- 2.25.1