mirror of
https://github.com/lukaszraczylo/kubernetes-images-sync-operator.git
synced 2026-06-05 22:53:39 +00:00
3880af56a7
* Bring operator to the brand new world of build and deployments. * Clean up the code and basic improvements. * More fixes, moving from python to golang worker. * fixup! More fixes, moving from python to golang worker. * fixup! fixup! More fixes, moving from python to golang worker. * fixup! fixup! fixup! More fixes, moving from python to golang worker. * fixup! fixup! fixup! fixup! More fixes, moving from python to golang worker. * fixup! fixup! fixup! fixup! fixup! More fixes, moving from python to golang worker. * fixup! fixup! fixup! fixup! fixup! fixup! More fixes, moving from python to golang worker.
9 lines
273 B
Docker
9 lines
273 B
Docker
# Dockerfile for GoReleaser dockers_v2
|
|
# GoReleaser organizes binaries by platform: linux/amd64/manager, linux/arm64/manager
|
|
FROM gcr.io/distroless/static:nonroot
|
|
ARG TARGETPLATFORM
|
|
WORKDIR /
|
|
COPY ${TARGETPLATFORM}/manager /manager
|
|
USER 65532:65532
|
|
ENTRYPOINT ["/manager"]
|