From b4924c407e993ee4980ace9f5222f5f59d2a3a9d Mon Sep 17 00:00:00 2001 From: Henning Brinkmann Date: Mon, 7 Jun 2021 01:02:43 +0200 Subject: [PATCH] disable strict host key checking --- Dockerfile | 2 ++ ssh_config | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 ssh_config diff --git a/Dockerfile b/Dockerfile index 1324b52..048007a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,8 @@ RUN apt-get update && apt-get -y install rsync RUN pip install --upgrade pip RUN pip install Lektor +COPY ssh_config /root/.ssh/config + WORKDIR /workspace ENTRYPOINT [ "lektor" ] diff --git a/ssh_config b/ssh_config new file mode 100644 index 0000000..64779c2 --- /dev/null +++ b/ssh_config @@ -0,0 +1,2 @@ +Host * + StrictHostKeyChecking no \ No newline at end of file