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 ...@@ -33,9 +33,12 @@ COPY setup.py setup.py
# Perform build and cleanup artifacts # Perform build and cleanup artifacts
RUN \ RUN \
apk add --no-cache openssh git && \ apk add --no-cache \
python setup.py install 2>/dev/null && \ git \
rm -rf /tmp/* git-fast-import \
openssh \
&& python setup.py install 2>/dev/null \
&& rm -rf /tmp/*
# Set working directory # Set working directory
WORKDIR /docs WORKDIR /docs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment