Trying to disable git host key checking

This commit is contained in:
decentral1se
2021-03-30 21:55:31 +02:00
parent 0c15c0b647
commit 91973289ae

View File

@ -6,6 +6,10 @@ EXPOSE 8000
COPY . /src/
RUN mkdir -p ~/.ssh
RUN echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
RUN git submodule update --init --recursive
ENTRYPOINT ["/bin/bash"]