mirror of
https://github.com/netbirdio/kubernetes-operator.git
synced 2026-05-22 17:11:40 -07:00
- It adds a helm chart that will be hosted in the Github pages URL of this repository - an admission controller operator - Basic documentation for installing the operator, configuring CRDs and example pod configuration
9 lines
147 B
Docker
9 lines
147 B
Docker
# This dockerfile is used for goreleaser
|
|
|
|
FROM gcr.io/distroless/static:nonroot
|
|
WORKDIR /
|
|
COPY manager .
|
|
USER 65532:65532
|
|
|
|
ENTRYPOINT ["/manager"]
|