From d0799b2d147acd0725d2d33cf402726a6217b784 Mon Sep 17 00:00:00 2001 From: James Jones Date: Mon, 13 Mar 2023 06:29:23 -0400 Subject: [PATCH] Adjusting permissions on ssh_config.d file --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 715a3c0..4036f66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,7 @@ ENV ANSIBLE_HOST_KEY_CHECKING=False \ ANSIBLE_TIMEOUT=120 \ GPG_TTY=/dev/console COPY ssh_ansible.conf /etc/ssh/ssh_config.d/99-ansible.conf +RUN chown root:root /etc/ssh/ssh_config.d/99-ansible.conf && chmod 644 /etc/ssh/ssh_config.d/99-ansible.conf # Ensuring the fpm tool is installed to build distro packages such as RPM and DEB COPY rpm-sign-expect /usr/bin