Update Dockerfile

This commit is contained in:
Phil 2022-01-09 17:57:54 +01:00
parent 8e9abc1ef7
commit 066faed3e0

View file

@ -16,9 +16,9 @@ COPY . .
RUN go get -d -v ./...
RUN go build -a -installsuffix -ldflags="-w -s -X $I_PACKAGE.GitCommitShort=$CI_COMMIT_SHORT_SHA -X $I_PACKAGE.GitBranch=$CI_COMMIT_BRANCH" -o app .
RUN go build -a -installsuffix cgo -ldflags=" -X $I_PACKAGE.GitCommitShort=$CI_COMMIT_SHORT_SHA -X $I_PACKAGE.GitBranch=$CI_COMMIT_BRANCH" -o app .
FROM scratch as production
WORKDIR /
COPY --from=builder /go/src/git.ucode.space/goshorly/app /app
ENTRYPOINT [ "/app" ]
ENTRYPOINT [ "/app" ]