Skip to content

Commit

Permalink
Merge pull request #7490 from raywainman/dockerfile
Browse files Browse the repository at this point in the history
Remove maintainer labels in Dockerfiles since they just get stale
  • Loading branch information
k8s-ci-robot authored Nov 23, 2024
2 parents 5ae08a9 + 3f8637c commit 3080b95
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion balancer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
FROM gcr.io/distroless/static:latest
MAINTAINER Marcin Wielgus "[email protected]"

COPY balancer /

Expand Down
1 change: 0 additions & 1 deletion builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# limitations under the License.

FROM golang:1.23.2
LABEL maintainer="Marcin Wielgus <[email protected]>"

ENV GOPATH /gopath/
ENV PATH $GOPATH/bin:$PATH
Expand Down
1 change: 0 additions & 1 deletion cluster-autoscaler/Dockerfile.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# limitations under the License.
ARG BASEIMAGE=gcr.io/distroless/static:nonroot-amd64
FROM $BASEIMAGE
LABEL maintainer="Marcin Wielgus <[email protected]>"

COPY cluster-autoscaler-amd64 /cluster-autoscaler
WORKDIR /
Expand Down
1 change: 0 additions & 1 deletion cluster-autoscaler/Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# limitations under the License.
ARG BASEIMAGE=gcr.io/distroless/static:nonroot-arm64
FROM $BASEIMAGE
LABEL maintainer="Marcin Wielgus <[email protected]>"

COPY cluster-autoscaler-arm64 /cluster-autoscaler
WORKDIR /
Expand Down
1 change: 0 additions & 1 deletion cluster-autoscaler/Dockerfile.s390x
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# limitations under the License.
ARG BASEIMAGE=gcr.io/distroless/static:nonroot-s390x
FROM $BASEIMAGE
LABEL maintainer="Marcin Wielgus <[email protected]>"

COPY cluster-autoscaler-s390x /cluster-autoscaler
WORKDIR /
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ 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
LABEL maintainer="Tomasz Kulczynski <[email protected]>"

ARG TARGETARCH

Expand Down
1 change: 0 additions & 1 deletion vertical-pod-autoscaler/pkg/recommender/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ 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
LABEL maintainer="Krzysztof Grygiel <[email protected]>"

ARG TARGETARCH

Expand Down
1 change: 0 additions & 1 deletion vertical-pod-autoscaler/pkg/updater/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ 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
LABEL maintainer="Marcin Wielgus <[email protected]>"

ARG TARGETARCH

Expand Down

0 comments on commit 3080b95

Please sign in to comment.