adds missing bash command merging &&

This commit is contained in:
Hyatt 2022-01-30 14:14:47 -06:00
parent f7e09cd108
commit f954b7c3ed
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -19,7 +19,7 @@ RUN apk add --no-cache git upx && \\
adduser --disabled-password -G app --gecos "application account" --home "/home/app" --shell "/sbin/nologin" --no-create-home --uid 1000 app && \\
go mod download && \\
GIT_HASH=\$(git rev-parse --short HEAD) && GIT_TAG=\$(git tag | tail -1) && \\
CGO_ENABLED=0 \\
CGO_ENABLED=0 && \\
GOOS=linux && \\
GOARCH=amd64 && \\
go build \\