-
Notifications
You must be signed in to change notification settings - Fork 10
83 lines (71 loc) · 2.49 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
82
83
name: RPC Proxy - Docker build, scan and push
on:
workflow_call:
env:
DOCKERFILE_LOCATION: "docker/rpc-proxy/Dockerfile"
DOCKER_IMAGE_NAME: "vechain/sdk-rpc-proxy"
DOCKER_IMAGE_VERSION: "v1.0.0"
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: Build and export to Docker
uses: docker/build-push-action@v6
with:
context: .
file: ${{ env.DOCKERFILE_LOCATION }}
load: true
tags: "${{ env.DOCKER_IMAGE_NAME }}:${{env.DOCKER_IMAGE_VERSION}}"
labels: |
maintainer=vechain
description="RPC Proxy for vechain Thor"
build_timestamp=${{ github.event.after }}
source=https://github.com/vechain/vechain-sdk-js
commit_hash=${{ github.sha }}
- 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: ${{env.DOCKER_IMAGE_NAME}}
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: ${{env.DOCKERFILE_LOCATION}}
platforms: linux/amd64,linux/arm64
push: true
tags: "${{ env.DOCKER_IMAGE_NAME }}:${{env.DOCKER_IMAGE_VERSION}}"