update docker image name; fix entrypoint
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Simon Vieille 2022-12-07 15:49:20 +01:00
parent 408ad78b43
commit 1b53b5271b
Signed by: deblan
GPG key ID: 579388D585F70417
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ pipeline:
from_secret: registry_password
registry: gitnet.fr
repo: gitnet.fr/${CI_REPO}
tags: ${CI_COMMIT_SHA}
tags: latest
when:
event: [push]

View file

@ -2,5 +2,5 @@ FROM owasp/dependency-check
RUN /usr/share/dependency-check/bin/dependency-check.sh --updateonly
ENTRYPOINT ["/usr/share/dependency-check/bin/dependency-check.sh"
ENTRYPOINT ["/usr/share/dependency-check/bin/dependency-check.sh"]
CMD ["--scan", "/src","--format","ALL","--project", "GENERIC","--failOnCVSS"," 0"]