From 4666bf0223534a572d300cb7d18f8656588f2a23 Mon Sep 17 00:00:00 2001 From: squidfunk <martin.donath@squidfunk.com> Date: Mon, 29 Jan 2018 15:02:27 +0100 Subject: [PATCH] Fixed gh-deploy error inside Docker due to Alpine package restructuring --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff77634e..eadf833f 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 -- GitLab