|
|
@@ -1,6 +1,9 @@
|
|
|
# This version of Dockerfile is for building without external dependencies.
|
|
|
# Build a multi-platform image e.g. `docker buildx build --push --platform linux/arm64,linux/amd64 --tag external-secrets:dev --file Dockerfile.standalone .`
|
|
|
FROM golang:1.24.3-alpine@sha256:ef18ee7117463ac1055f5a370ed18b8750f01589f13ea0b48642f5792b234044 AS builder
|
|
|
+# Add metadata
|
|
|
+LABEL maintainer="cncf-externalsecretsop-maintainers@lists.cncf.io" \
|
|
|
+ description="External Secrets Operator is a Kubernetes operator that integrates external secret management systems"
|
|
|
ARG TARGETOS
|
|
|
ARG TARGETARCH
|
|
|
ENV CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH}
|