diff --git a/Dockerfile b/Dockerfile index 4df9d95..a0fdc51 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,13 @@ -FROM checkmarx/kics:gh-action-kics1.7 - +FROM checkmarx/kics:gh-action-kics2.0 as kics-env + +FROM cgr.dev/chainguard/wolfi-base:latest + +COPY --from=kics-env /app /app + COPY ./entrypoint.sh /entrypoint.sh - + RUN chmod +x /entrypoint.sh - + COPY ./ /app - + ENTRYPOINT ["/entrypoint.sh"]