From 838a81f4162ca631b0682cfe9303049cfaf46419 Mon Sep 17 00:00:00 2001 From: zontreck Date: Tue, 9 Jul 2024 16:56:29 -0700 Subject: [PATCH] Adds some verbosity --- LinuxGeneralCompiler/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index a4f8f9c..488c250 100644 --- a/LinuxGeneralCompiler/Dockerfile +++ b/LinuxGeneralCompiler/Dockerfile @@ -90,7 +90,11 @@ ADD ./id_rsa.pub ./id_rsa.pub RUN chmod 0600 id_rsa +# Precache SSH Host Keys RUN ssh-keyscan -H github.com >> /root/.ssh/known_hosts RUN ssh-keyscan -H git.zontreck.com -p 1212 >> /root/.ssh/known_hosts +RUN echo "Precached SSH Host keys" +RUN cat /root/.ssh/known_hosts + ENTRYPOINT [ "java", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", "@/agent.secret", "-name", "Linux", "-workDir", "/builder" ] \ No newline at end of file