Skip to content
This repository was archived by the owner on Jan 16, 2024. It is now read-only.

Commit c9cbab4

Browse files
committed
EN-566: Add AZDO specific container (fix)
1 parent f847b01 commit c9cbab4

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

ci/azure/Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM quantumsec/docker-pipeline-checkov:latest
2+
3+
# Bash is required by Azure DevOps
4+
# See: https://docs.microsoft.com/en-us/azure/devops/pipelines/process/container-phases?view=azure-devops#requirements
5+
RUN apk add --update bash

ci/azure/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Using with Azure DevOps
2+
3+
To use this pipeline job with Azure DevOps, add a `job` to your existing pipeline:
4+
5+
```yaml
6+
jobs:
7+
- job: Checkov
8+
displayName: Run Checkov Validation
9+
container:
10+
image: quantumsec/docker-pipeline-checkov
11+
steps:
12+
- script: npx @quantum-sec/ci-analysis-collector checkov --soft-fail
13+
```

0 commit comments

Comments
 (0)