Files
gitlab-cleanup-handler/Dockerfile
T
renovate 4c26324645
Unbound Release / Check Preconditions (push) Successful in 21s
Unbound Release / Create Tag (push) Skipped
gitlab-cleanup-handler / test (push) Skipped
gitlab-cleanup-handler / vulnerabilities (push) Skipped
gitlab-cleanup-handler / build (push) Skipped
Unbound Release / Create Release (push) Successful in 25s
Unbound Release / Generate Changelog and Handle PR (push) Successful in 35s
Release / release (push) Successful in 5m53s
chore(deps): update golang docker tag to v1.26.6 (#472)
2026-08-13 21:51:47 +00:00

29 lines
1.1 KiB
Docker

FROM amd64/golang:1.26.6@sha256:9262b44222fad4e87aacd26b766bc1d9dddb7ea7b1bcad03bdce0f9c7f87f2bd 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"]