Skip to content

Commit

Permalink
Add installation of git to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jun 12, 2023
1 parent 303f51a commit dca99f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -12,10 +12,10 @@ LABEL com.github.actions.color="green"
RUN apk add --no-cache --upgrade expat libuuid

COPY python/requirements.txt /action/
RUN apk add --no-cache build-base libffi-dev; \
RUN apk add --no-cache build-base libffi-dev git; \
pip install --upgrade --force --no-cache-dir pip && \
pip install --upgrade --force --no-cache-dir -r /action/requirements.txt; \
apk del build-base libffi-dev
apk del build-base libffi-dev git

COPY python/publish /action/publish
COPY python/publish_test_results.py /action/
Expand Down

0 comments on commit dca99f4

Please sign in to comment.