diff --git a/Dockerfile b/Dockerfile index fe5799d..318f13f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]