using alpine

This commit is contained in:
Eli Trop
2020-12-30 10:37:41 +02:00
parent ffc56c0216
commit f969c6bb69
2 changed files with 14 additions and 4 deletions

View File

@ -1,3 +1,7 @@
FROM checkmarx/kics:latest
ENTRYPOINT ["/app/bin/kics","-p /github/workspace/$INPUT_DIRECTORY"]
FROM alpine:latest
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]