remove maintainer labels in Dockerfiles since they just get stale
This commit is contained in:
parent
93f74c0948
commit
3f8637cb8f
|
|
@ -1,5 +1,4 @@
|
|||
FROM gcr.io/distroless/static:latest
|
||||
MAINTAINER Marcin Wielgus "mwielgus@google.com"
|
||||
|
||||
COPY balancer /
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@
|
|||
# limitations under the License.
|
||||
|
||||
FROM golang:1.23.2
|
||||
LABEL maintainer="Marcin Wielgus <mwielgus@google.com>"
|
||||
|
||||
ENV GOPATH /gopath/
|
||||
ENV PATH $GOPATH/bin:$PATH
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@
|
|||
# limitations under the License.
|
||||
ARG BASEIMAGE=gcr.io/distroless/static:nonroot-amd64
|
||||
FROM $BASEIMAGE
|
||||
LABEL maintainer="Marcin Wielgus <mwielgus@google.com>"
|
||||
|
||||
COPY cluster-autoscaler-amd64 /cluster-autoscaler
|
||||
WORKDIR /
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@
|
|||
# limitations under the License.
|
||||
ARG BASEIMAGE=gcr.io/distroless/static:nonroot-arm64
|
||||
FROM $BASEIMAGE
|
||||
LABEL maintainer="Marcin Wielgus <mwielgus@google.com>"
|
||||
|
||||
COPY cluster-autoscaler-arm64 /cluster-autoscaler
|
||||
WORKDIR /
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@
|
|||
# limitations under the License.
|
||||
ARG BASEIMAGE=gcr.io/distroless/static:nonroot-s390x
|
||||
FROM $BASEIMAGE
|
||||
LABEL maintainer="Marcin Wielgus <mwielgus@google.com>"
|
||||
|
||||
COPY cluster-autoscaler-s390x /cluster-autoscaler
|
||||
WORKDIR /
|
||||
|
|
|
|||
|
|
@ -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 <tkulczynski@google.com>"
|
||||
|
||||
ARG TARGETARCH
|
||||
|
||||
|
|
|
|||
|
|
@ -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 <kgrygiel@google.com>"
|
||||
|
||||
ARG TARGETARCH
|
||||
|
||||
|
|
|
|||
|
|
@ -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 <mwielgus@google.com>"
|
||||
|
||||
ARG TARGETARCH
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue