From 73a8e57fae779522743ebbb9583a37d1722d6472 Mon Sep 17 00:00:00 2001 From: youben11 Date: Thu, 12 Jan 2023 13:28:50 +0100 Subject: [PATCH] fix(dockerfile): use ecdsa instead of rsa --- builders/Dockerfile.concrete-compiler-env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/Dockerfile.concrete-compiler-env b/builders/Dockerfile.concrete-compiler-env index 2636d32c6..06562b373 100644 --- a/builders/Dockerfile.concrete-compiler-env +++ b/builders/Dockerfile.concrete-compiler-env @@ -7,7 +7,7 @@ RUN dnf update -y RUN dnf install -y ninja-build hwloc-devel ccache clang ncurses-devel RUN dnf install -y openssh-clients RUN dnf clean all -RUN mkdir -p ~/.ssh/ && ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts +RUN mkdir -p ~/.ssh/ && ssh-keyscan -t ecdsa github.com >> ~/.ssh/known_hosts # setup ccache with an unlimited amount of files and storage RUN ccache -M 0 RUN ccache -F 0