9438b49cc3
* Bump trivy image to enable use of config scan-type * move --no-progress switch behind input arg and set default * prevent unrelated args from passing with config scan-type * fix invalid option passing * set artifactRef if scanType = config * Add workflow example for IAC/YAML scanning * Update README.md Co-authored-by: Simar <1254783+simar7@users.noreply.github.com> * Update README.md Co-authored-by: Simar <1254783+simar7@users.noreply.github.com> * clean hideProgress input Co-authored-by: Simar <1254783+simar7@users.noreply.github.com>
5 lines
132 B
Docker
5 lines
132 B
Docker
FROM aquasec/trivy:0.19.1
|
|
COPY entrypoint.sh /
|
|
RUN apk --no-cache add bash
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"] |