adds safe.directory

This commit is contained in:
Hyatt 2022-04-14 10:49:25 -05:00
parent 70e48832c1
commit bb0f517084
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

1
Jenkinsfile vendored
View File

@ -17,6 +17,7 @@ COPY . /go/src/app
WORKDIR /go/src/app
RUN apk add --no-cache git upx && \\
git config --global --add safe.directory /go/src/app && \\
addgroup -S -g 1000 app && \\
adduser --disabled-password -G app --gecos "application account" --home "/home/app" --shell "/sbin/nologin" --no-create-home --uid 1000 app && \\
go get -d -v ./... && \\