Create DockerScout.yml

This commit is contained in:
Noxcis 2024-08-24 01:01:56 -05:00 committed by GitHub
parent 2d5796d161
commit 88f856cbc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

47
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,47 @@
name: Docker Image Build and Analysis
on:
schedule:
- cron: "0 0 * * *" # Schedule the workflow to run daily at midnight (UTC time). Adjust the time if needed.
workflow_dispatch: # Manual run trigger
inputs:
trigger-build:
description: 'Trigger a manual build and push'
default: 'true'
jobs:
build-and-analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Docker image
id: build-image
run: |
docker build -t my-app-image:latest .
- name: Install Docker Scout
run: |
curl -fsSL https://get.docker.com/scout/install.sh | sh
- name: Analyze Docker image with Docker Scout
id: analyze-image
run: |
docker scout cves --format json my-app-image:latest > scout-results.json
- name: Upload Scout results
uses: actions/upload-artifact@v3
with:
name: scout-results
path: scout-results.json