9 lines
253 B
Plaintext
9 lines
253 B
Plaintext
# Use distroless as minimal base image to package the manager binary
|
|
# Refer to https://github.com/GoogleContainerTools/distroless for more details
|
|
FROM gcr.io/distroless/static:nonroot
|
|
WORKDIR /
|
|
COPY manager .
|
|
USER 65532:65532
|
|
|
|
ENTRYPOINT ["/manager"]
|