diff --git a/Dockerfile b/Dockerfile index ff77634e45c8152391e8579ccb5b81a03b72f54e..eadf833f24bfe9ffcc5c3e5d33eca2791c8f6fb5 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