From dd11f8383ba033ec1ad4a2dca729b8c9de7683f9 Mon Sep 17 00:00:00 2001 From: Lukas Martini Date: Mon, 13 Nov 2023 19:07:46 +0100 Subject: [PATCH] Toolchain container: Add host key for xelix repo upload --- Containerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Containerfile b/Containerfile index f3c5933f..bcbdb375 100644 --- a/Containerfile +++ b/Containerfile @@ -138,4 +138,8 @@ RUN pip3 install --no-cache --upgrade pip setuptools PyYAML toposort click RUN adduser --disabled-password --gecos '' dev RUN echo 'dev ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers +# For uploads in automated runs +RUN mkdir /root/.ssh +RUN ssh-keyscan pkgs.xelix.org >> /root/.ssh/known_hosts + CMD ["/bin/bash"]