mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
13 lines
301 B
Docker
13 lines
301 B
Docker
FROM gcr.io/distroless/static-debian12:debug-nonroot
|
|
|
|
USER nonroot
|
|
WORKDIR /home/nonroot/
|
|
|
|
ARG image_version client TARGETARCH
|
|
ENV RELEASE=$image_version CLIENT=$client
|
|
|
|
COPY kubescape-${TARGETARCH}-ubuntu-latest /usr/bin/kubescape
|
|
RUN ["kubescape", "download", "artifacts"]
|
|
|
|
ENTRYPOINT ["kubescape"]
|