We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f825f3 commit 4367a0bCopy full SHA for 4367a0b
.github/workflows/sysdig-scan.yml
@@ -25,14 +25,16 @@ jobs:
25
- name: Build vote image
26
run: |
27
docker build -t vote-image ./vote
28
+ docker save vote-image -o vote-image.tar
29
30
- name: Scan Docker image with Sysdig
31
32
docker run --rm \
33
-e SECURE_API_TOKEN=${{ secrets.SYSDIG_SECURE_TOKEN }} \
34
+ -v ${{ github.workspace }}/vote-image.tar:/tmp/vote-image.tar \
35
quay.io/sysdig/sysdig-cli-scanner:latest \
36
--apiurl ${{ secrets.SYSDIG_API_URL }} \
- vote-image
37
+ --input /tmp/vote-image.tar
38
39
- name: Scan IaC (k8s-specifications)
40
0 commit comments