Skip to content
Snippets Groups Projects
Commit 4666bf02 authored by squidfunk's avatar squidfunk Committed by Martin Donath
Browse files

Fixed gh-deploy error inside Docker due to Alpine package restructuring

parent 263e2a84
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment