
Updated KICS to pull from Docker image checkmarx/kics:gh-action for better version control Signed-off-by: João Reigota <joao.reigota@checkmarx.com>
10 lines
141 B
Docker
10 lines
141 B
Docker
FROM checkmarx/kics:gh-action
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
COPY ./ /app
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|