Skip to content
Snippets Groups Projects
Commit 6d846c77 authored by Moul's avatar Moul
Browse files

Install `git` on pip image (#443)

Needed for DuniterPy installation from git
parent 685d0b06
No related branches found
No related tags found
1 merge request!254Install `git` on pip image (#443)
Pipeline #34389 passed with warnings
......@@ -9,6 +9,11 @@ WORKDIR /silkaj
# Copy source tree
COPY ./ ./
# Install git
RUN apt update && \
apt install --yes git && \
rm -rf /var/lib/apt/lists
# Install Silkaj
RUN pip install . silkaj[deathreaper]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment