From 432ca341e3c800c8d2dae3b989130945ae9bc254 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Sun, 31 Mar 2024 21:43:18 +0000 Subject: [PATCH] chore: indicate allowed ssh signers for git --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index cedce6f..12ba155 100644 --- a/Dockerfile +++ b/Dockerfile @@ -215,6 +215,7 @@ ARG GIT_USER_EMAIL ARG GIT_USER_NAME RUN git config --global user.email "${GIT_USER_EMAIL}" \ && git config --global user.name "${GIT_USER_NAME}" \ + && git config --global gpg.ssh.allowedSignersFile "${XDG_CONFIG_HOME}/git/allowed_signers" \ && git config --global core.editor nvim \ && git config --global diff.tool nvimdiff \ && git config --global difftool.nvimdiff.layout "LOCAL,REMOTE" \