File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,14 @@ FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.4 AS builder
1616ARG TARGETOS
1717ARG TARGETARCH
1818
19- LABEL org.opencontainers.image.source=https://github.com/kcp-dev/api-syncagent
20- LABEL org.opencontainers.image.description="A Kubernetes agent to synchronize APIs and their objects between Kubernetes clusters and kcp"
21- LABEL org.opencontainers.image.licenses=Apache-2.0
22-
2319WORKDIR /go/src/github.com/kcp-dev/api-syncagent
2420COPY . .
2521RUN GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} make clean api-syncagent
2622
2723FROM gcr.io/distroless/static-debian12:debug
24+ LABEL org.opencontainers.image.source=https://github.com/kcp-dev/api-syncagent
25+ LABEL org.opencontainers.image.description="A Kubernetes agent to synchronize APIs and their objects between Kubernetes clusters and kcp"
26+ LABEL org.opencontainers.image.licenses=Apache-2.0
2827
2928COPY --from=builder /go/src/github.com/kcp-dev/api-syncagent/_build/api-syncagent /usr/local/bin/api-syncagent
3029
You can’t perform that action at this time.
0 commit comments