-
Notifications
You must be signed in to change notification settings - Fork 1
101 lines (81 loc) · 3.01 KB
/
docker-image.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
99
100
101
name: Docker Image CI
on:
push:
branches: [ "main" ]
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: false
default: 'warning'
type: choice
options:
- info
- warning
print_tags:
description: 'True to print to STDOUT'
required: false
type: boolean
tags:
description: 'Test scenario tags'
required: false
type: string
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
steps:
- uses: actions/checkout@v3
- name: Set up maven
uses: s4u/[email protected]
with:
java-version: '11'
maven-version: '3.6.3'
- name: docker login
run: docker login -u=citelibre -p="${{ secrets.PASSWORD_DOCKER_CITELIBRE }}"
- name: Get new version
run: echo "VERSION=latest">> $GITHUB_ENV
- name: Display version
run: echo "version $VERSION"
- name: build war ihm
run: cd citelibre-serviceEZ
- name: build serviceEZ
run: docker build citelibre-serviceEZ -t citelibre/service_ez:ihm-$VERSION
- name: Save serviceEZ
run: docker save -o citelibre-serviceEZ.tar citelibre/service_ez:ihm-$VERSION
- name: Run Trivy vulnerability scanner in tarball mode of rendez vous image
uses: aquasecurity/[email protected]
with:
input: /github/workspace/citelibre-serviceEZ.tar
severity: 'CRITICAL,HIGH'
format: 'sarif'
output: 'trivy-results.sarif'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: 'trivy-results.sarif'
- name: build mysql
run: docker build mysql -t citelibre/service_ez:db-$VERSION
- name: build matomo
run: docker build matomo -t citelibre/service_ez:matomo-$VERSION
- name: build solr
run: docker build solr -t citelibre/service_ez:solr-$VERSION
- name: build keycloak
run: docker build keycloak -t citelibre/service_ez:keycloak-$VERSION
- name: build kibana
run: docker build kibana -t citelibre/service_ez:kibana-$VERSION
- name: build elasticsearch
run: docker build elasticsearch -t citelibre/service_ez:elasticsearch-$VERSION
- name: push images on docker hub
run: |
docker push citelibre/service_ez:solr-$VERSION
docker push citelibre/service_ez:db-$VERSION
docker push citelibre/service_ez:matomo-$VERSION
docker push citelibre/service_ez:keycloak-$VERSION
docker push citelibre/service_ez:ihm-$VERSION
docker push citelibre/service_ez:kibana-$VERSION
docker push citelibre/service_ez:elasticsearch-$VERSION