-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7490 from raywainman/dockerfile
Remove maintainer labels in Dockerfiles since they just get stale
- Loading branch information
Showing
8 changed files
with
0 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 / | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 / | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 / | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 / | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|