From 6a007aaf587a9d42203e16c3ea0268e7a10e45be Mon Sep 17 00:00:00 2001 From: Eng Zer Jun Date: Wed, 23 Oct 2024 10:00:29 +0800 Subject: [PATCH] 2024-10-23 10:00:29 Signed-off-by: Eng Zer Jun --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 786f5ea..6a8bb65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,13 +6,13 @@ ARG TARGETARCH RUN CGO_ENABLED=0 \ GOOS=${TARGETOS} \ GOARCH=${TARGETARCH} \ - go install -ldflags '-s -w -extldflags "-static"' github.com/googleapis/api-linter/cmd/api-linter@v1.67.3 \ + go install -ldflags '-s -w -extldflags "-static"' github.com/googleapis/api-linter/cmd/api-linter@v1.67.4 \ && find bin -name 'api-linter' -executable -exec cp -- "{}" /go/bin \; FROM alpine:3 LABEL org.opencontainers.image.source=https://github.com/docker-multiarch/google-api-linter -LABEL org.opencontainers.image.version=v1.67.3 +LABEL org.opencontainers.image.version=v1.67.4 COPY --from=builder /go/bin/api-linter /usr/local/bin