diff --git a/Dockerfile b/Dockerfile index ff77634e4..eadf833f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,9 +33,12 @@ COPY setup.py setup.py # Perform build and cleanup artifacts RUN \ - apk add --no-cache openssh git && \ - python setup.py install 2>/dev/null && \ - rm -rf /tmp/* + apk add --no-cache \ + git \ + git-fast-import \ + openssh \ + && python setup.py install 2>/dev/null \ + && rm -rf /tmp/* # Set working directory WORKDIR /docs