1

Compile app as static binary
All checks were successful
ci/woodpecker/tag/build/2 Pipeline was successful
ci/woodpecker/tag/build/1 Pipeline was successful
ci/woodpecker/tag/tag Pipeline was successful

This commit is contained in:
2025-06-13 14:04:52 +04:00
parent 0b44366cab
commit 963a09417a

View File

@@ -5,7 +5,7 @@ FROM golang:${GOLANG_VERSION} as build
COPY . /src
WORKDIR /src
RUN go build ./cmd/github-release
RUN CGO_ENABLED=0 go build -tags netgo,osusergo ./cmd/github-release
FROM scratch