Skip to content

Commit

Permalink
Docker image: Fix ownership issue with Git 2.36+ (#304)
Browse files Browse the repository at this point in the history
* Docker image: Fix ownership issue with Git 2.36+

* Update tests.yml
  • Loading branch information
jonashaag authored Jan 6, 2023
1 parent f4f650d commit 6472d3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
python-version: ["2.7", "3.10"]
ctags: [false]
include:
- os: ubuntu-latest
- os: ubuntu-20.04
python-version: "3.5"
ctags: true
- os: windows-latest
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ RUN apk add --no-cache python3-dev py3-pip gcc musl-dev && \

COPY . /klaus
RUN pip3 install /klaus && rm -rf /klaus

# https://github.com/jonashaag/klaus/issues/300
RUN git config --global --add safe.directory '*'

0 comments on commit 6472d3f

Please sign in to comment.