mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 22:35:50 +00:00
added scanning image
This commit is contained in:
parent
a86e3a6ca3
commit
6738387024
1 changed files with 21 additions and 2 deletions
|
@ -32,9 +32,28 @@ steps:
|
||||||
- task: Docker@2
|
- task: Docker@2
|
||||||
displayName: 'Build docker image'
|
displayName: 'Build docker image'
|
||||||
inputs:
|
inputs:
|
||||||
command: 'buildAndPush'
|
command: 'build'
|
||||||
Dockerfile: './Dockerfile'
|
Dockerfile: './Dockerfile'
|
||||||
repository: venkeyboda/spring-petclinic
|
repository: venkeyboda/spring-petclinic
|
||||||
tags: '$(Build.BuildId)'
|
tags: '$(Build.BuildId)'
|
||||||
|
|
||||||
|
- task: CmdLine@2
|
||||||
|
displayName: 'scannig image '
|
||||||
|
inputs:
|
||||||
|
script: |
|
||||||
|
trivy image $(venkeyboda/spring-petclinic):$(Build.BuildId) -o trivy-report.xml
|
||||||
|
|
||||||
|
- task: PublishPipelineArtifact@1
|
||||||
|
displayName: 'Publish Trivy Report'
|
||||||
|
inputs:
|
||||||
|
targetPath: 'trivy-report.xml'
|
||||||
|
artifact: 'TrivyReport'
|
||||||
|
|
||||||
|
- task: Docker@2
|
||||||
|
displayName: 'pushing the docker image'
|
||||||
|
inputs:
|
||||||
|
command: 'push'
|
||||||
|
containerRegistry: 'docker hub'
|
||||||
|
repository: venkeyboda/spring-petclinic
|
||||||
|
tags: |
|
||||||
|
'$(Build.BuildId)'
|
Loading…
Reference in a new issue