-
Notifications
You must be signed in to change notification settings - Fork 10
81 lines (70 loc) · 2.37 KB
/
rpc-proxy-docker.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
name: RPC Proxy - Docker build, scan and push
on:
workflow_call:
permissions:
contents: read
packages: write
checks: write
actions: read
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
if: ${{ github.event_name != 'pull_request' }}
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
if: ${{ github.event_name != 'pull_request' }}
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: vechain/sdk-rpc-proxy
- name: Build and export to Docker
uses: docker/build-push-action@v6
with:
context: .
file: docker/rpc-proxy/Dockerfile
load: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Create .trivyignore file
# "cross-spawn" is resolved as version 7.0.5 but Trivy keeps showing the error
run: |
echo "CVE-2024-21538" > .trivyignore
echo "CVE-2024-13176" >> .trivyignore
- name: Run Trivy Scan
uses: aquasecurity/trivy-action@master
with:
image-ref: ${{ fromJSON(steps.meta.outputs.json).tags[0] }}
format: 'table'
ignore-unfixed: true
exit-code: '1'
vuln-type: os,library
severity: CRITICAL,HIGH,MEDIUM
scanners: misconfig,vuln,secret
trivyignores: .trivyignore
env:
# See https://github.com/aquasecurity/trivy/discussions/7538
TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db:2
- name: Build and push
if: ${{ github.event_name != 'pull_request' }}
uses: docker/build-push-action@v6
with:
context: .
file: docker/rpc-proxy/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
sbom: true
provenance: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}