Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

delete-hadolint-workflow #227

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
64 changes: 64 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: CI

on: [push]

jobs:
sast_scan:
name: Run Bandit Scan on app
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install Bandit
run: pip install bandit

- name: Run Bandit Scan in current directory
run: bandit -ll -ii -r . -f json -o bandit-report.json

- name: Upload the artifact(s)
uses: actions/upload-artifact@v3
if: always()
with:
name: Bandit vulnerability findings
path: bandit-report.json

dockerimage_scan:
name: Build our image and run a scan on it
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up our docker
uses: docker-practice/actions-setup-docker@v1
with:
docker_version: '20.10'

- name: Set up Docker daemon configuration
run: |
echo '{
"hosts": ["unix:///var/run/docker.sock"],
"live-restore": true
}' | sudo tee /etc/docker/daemon.json
# Ensure Docker is restarted to apply configuration
- name: Restart Docker
run: |
sudo systemctl restart docker

- name: Build the image
run: docker build -f Dockerfile -t agapp:latest .

- name: Docker Scout Scan image
run: |
curl -fsSL https://raw.githubusercontent.com/docker/scout-cli/main/install.sh -o install-scout.sh
sh install-scout.sh
docker scout quickview
docker scout cves
33 changes: 0 additions & 33 deletions .github/workflows/flake8.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/hadolint.yml

This file was deleted.

29 changes: 0 additions & 29 deletions docker-compose.yml

This file was deleted.