mirror of
https://github.com/lukaszraczylo/kubemirror.git
synced 2026-06-05 22:43:51 +00:00
9 lines
288 B
Docker
9 lines
288 B
Docker
# Dockerfile for GoReleaser dockers_v2
|
|
# GoReleaser organizes binaries by platform: linux/amd64/kubemirror, linux/arm64/kubemirror
|
|
FROM gcr.io/distroless/static:nonroot
|
|
ARG TARGETPLATFORM
|
|
WORKDIR /
|
|
COPY ${TARGETPLATFORM}/kubemirror /kubemirror
|
|
USER 65532:65532
|
|
ENTRYPOINT ["/kubemirror"]
|