Files
gitlab-cleanup-handler/Dockerfile
T
renovate 3275e7f642
gitlab-cleanup-handler / vulnerabilities (push) Successful in 1m26s
gitlab-cleanup-handler / test (push) Successful in 2m4s
gitlab-cleanup-handler / build (push) Failing after 35s
Release / release (push) Failing after 5m59s
chore(deps): update golang docker tag to v1.25.6 (#362)
2026-01-15 22:57:59 +00:00

29 lines
1.1 KiB
Docker

FROM amd64/golang:1.25.6@sha256:9860925875ac68a8fb57416cfc5c1ee267a06226730434af677b9406e8ea6ee6 as build
WORKDIR /build
ENV CGO_ENABLED=0
ADD . /build
RUN if [ $(go mod tidy -v 2>&1 | grep -c unused) != 0 ]; then echo "Unused modules, please run 'go mod tidy'"; exit 1; fi
RUN go fmt ./...
RUN go vet ./...
RUN CGO_ENABLED=1 go test -mod=readonly -race -coverprofile=coverage.txt.tmp -covermode=atomic -coverpkg=$(go list ./... | tr '\n' , | sed 's/,$//') ./...
RUN ["/bin/bash", "-c", "cat coverage.txt.tmp | grep -v -f <(find . -type f | xargs grep -l 'Code generated') > coverage.txt"]
RUN go tool cover -html=coverage.txt -o coverage.html
RUN go tool cover -func=coverage.txt
RUN rm coverage.txt.tmp
RUN GOOS=linux GOARCH=amd64 go build \
-tags prod \
-a -installsuffix cgo \
-mod=readonly \
-o /release/handler \
-ldflags '-w -s' \
./cmd/handler/handler.go
FROM scratch as export
COPY --from=build /build/coverage.txt /
FROM scratch
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=build /release/handler /
CMD ["/handler"]