-
Notifications
You must be signed in to change notification settings - Fork 0
98 lines (87 loc) · 3.22 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Continuous Delivery
on:
push:
branches:
- main # shoud be removed
schedule:
- cron: '0 0 1 * *' # monthly build
workflow_dispatch:
env:
IMAGE_REPOSITORY_DIR: "ghcr.io/${{ github.repository_owner }}"
DOCKER_CONTENT_TRUST: 0
# CIS-DI-0005 recommends enable DOCKER_CONTENT_TRUST,
# but I disabled it becase Set up QEMU(docker/setup-qemu-action@v3It) raises
# # /usr/bin/docker pull tonistiigi/binfmt:latest
# # Error: remote trust data does not exist for docker.io/tonistiigi/binfmt: notary.docker.io does not have trust data for docker.io/tonistiigi/binfmt
jobs:
generate-jobs:
name: Generate Jobs
runs-on: ubuntu-22.04
outputs:
strategy: ${{ steps.generate-jobs.outputs.strategy }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Generate Jobs
id: generate-jobs
shell: bash
run: |
cat */*/strategy.json \
| bash .github/generate-strategy.sh ${IMAGE_REPOSITORY_DIR}/ \
| { echo -n "strategy=" ; jq -c . ; } \
| tee -a $GITHUB_OUTPUT
build:
needs: generate-jobs
strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
name: ${{ matrix.name }} ${{ matrix.imgtags[0] }}
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
security-events: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: ${{ join(matrix.platforms) }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the GitHub Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and load
uses: docker/build-push-action@v5
with:
context: ${{ matrix.dir }}
file: ${{ matrix.filesProcessed.dockerfile }}
push: false
load: true
tags: ${{ join(matrix.tags) }}
build-args: ${{ matrix.buildArgsProcessed }}
- name: Setup dockle
env:
dockleignore: ${{ matrix.filesProcessed.dockleignore }}
run: |
cp $dockleignore .
- name: Dockle scan
uses: erzz/dockle-action@v1
with:
image: "${{ matrix.tags[0] }}"
exit-code: '1'
failure-threshold: WARN
accept-keywords: key
accept-filenames: usr/share/cmake/Templates/Windows/Windows_TemporaryKey.pfx,etc/trusted-key.key,usr/share/doc/perl-IO-Socket-SSL/certs/server_enc.p12,usr/share/doc/perl-IO-Socket-SSL/certs/server.p12,usr/local/lib/python3.9/dist-packages/azure/core/settings.py,usr/local/lib/python3.8/site-packages/azure/core/settings.py,usr/share/postgresql-common/pgdg/apt.postgresql.org.asc,usr/local/lib/python3.7/dist-packages/azure/core/settings.py,etc/ssl/private/ssl-cert-snakeoil.key
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ${{ matrix.dir }}
file: ${{ matrix.filesProcessed.dockerfile }}
platforms: ${{ join(matrix.platforms) }}
push: true
tags: ${{ join(matrix.tags) }}
build-args: ${{ matrix.buildArgsProcessed }}