Skip to content

Commit

Permalink
Merge pull request #7387 from omerap12/dockerfile-maintainers
Browse files Browse the repository at this point in the history
Replace deprecated MAINTAINER with LABEL
  • Loading branch information
k8s-ci-robot authored Oct 15, 2024
2 parents bb94d27 + 82bbf0e commit 937a328
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ARG TARGETOS TARGETARCH
RUN CGO_ENABLED=0 LD_FLAGS=-s GOARCH=$TARGETARCH GOOS=$TARGETOS go build -C pkg/admission-controller -mod vendor -o admission-controller-$TARGETARCH

FROM gcr.io/distroless/static:latest
MAINTAINER Tomasz Kulczynski "tkulczynski@google.com"
LABEL maintainer="Tomasz Kulczynski <tkulczynski@google.com>"

ARG TARGETARCH

Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/pkg/recommender/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ARG TARGETOS TARGETARCH
RUN CGO_ENABLED=0 LD_FLAGS=-s GOARCH=$TARGETARCH GOOS=$TARGETOS go build -C pkg/recommender -mod vendor -o recommender-$TARGETARCH

FROM gcr.io/distroless/static:latest
MAINTAINER Krzysztof Grygiel "kgrygiel@google.com"
LABEL maintainer="Krzysztof Grygiel <kgrygiel@google.com>"

ARG TARGETARCH

Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/pkg/updater/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ARG TARGETOS TARGETARCH
RUN CGO_ENABLED=0 LD_FLAGS=-s GOARCH=$TARGETARCH GOOS=$TARGETOS go build -C pkg/updater -mod vendor -o updater-$TARGETARCH

FROM gcr.io/distroless/static:latest
MAINTAINER Marcin Wielgus "mwielgus@google.com"
LABEL maintainer="Marcin Wielgus <mwielgus@google.com>"

ARG TARGETARCH

Expand Down

0 comments on commit 937a328

Please sign in to comment.