Bumps checkmarx/kics from v2.1.1 to v2.1.2. --- updated-dependencies: - dependency-name: checkmarx/kics dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
231 B
Docker
14 lines
231 B
Docker
FROM checkmarx/kics:v2.1.2 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"]
|