Files

12 lines
594 B
Docker
Raw Permalink Normal View History

2026-05-20 16:32:05 +02:00
FROM gcr.io/distroless/static:nonroot
ARG TARGETOS
ARG TARGETARCH
LABEL org.opencontainers.image.title="NetBird Kubernetes API Proxy" \
org.opencontainers.image.description="Authorization proxy of Kubernetes API server using NetBird connections as identities." \
org.opencontainers.image.source="https://github.com/netbirdio/netbird-kubeapi-proxy" \
org.opencontainers.image.vendor="NetBird" \
org.opencontainers.image.licenses="BSD-3-Clause"
COPY bin/${TARGETOS}-${TARGETARCH}/netbird-kubeapi-proxy /usr/local/bin/
USER 65532:65532
ENTRYPOINT ["netbird-kubeapi-proxy"]