Skip to content

Commit

Permalink
fix git unsafe directory (#883)
Browse files Browse the repository at this point in the history
* fix git unsafe directory

fixes #846

* Update Dockerfile

Co-authored-by: x <>
  • Loading branch information
electriquo committed Jun 2, 2022
1 parent 82e409a commit c3b7932
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions Dockerfile
Expand Up @@ -4,21 +4,12 @@ COPY . .
RUN VERSION=$(git describe --tags --abbrev=0) && \
CGO_ENABLED=0 go build -o bin/gitleaks -ldflags "-X="github.com/zricethezav/gitleaks/v8/cmd.Version=${VERSION}

FROM alpine:3.15.4
FROM alpine:3.16
RUN adduser -D gitleaks && \
apk add --no-cache bash git openssh-client
COPY --from=build /go/src/github.com/zricethezav/gitleaks/bin/* /usr/bin/
USER gitleaks

# default to avoid the follow error:
# 11:09PM ERR fatal: unsafe repository ('/path' is owned by someone else)
# 11:09PM ERR To add an exception for this directory, call:
# 11:09PM ERR
# 11:09PM ERR git config --global --add safe.directory /path
# This means that when you run gitleaks from docker you must mount to /path
# in order to avoid this error.

# TODO waiting to push this until I've thought a bit more about it
# RUN git config --global --add safe.directory /path
RUN git config --global --add safe.directory '*'

ENTRYPOINT ["gitleaks"]

0 comments on commit c3b7932

Please sign in to comment.