-
Notifications
You must be signed in to change notification settings - Fork 1
218 lines (203 loc) · 11.3 KB
/
container.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
name: Container Image
on:
push:
branches:
- "main"
tags:
- "**"
env:
terraform_version: "1.7.5" # https://github.com/hashicorp/terraform/releases
tflint_version: "0.50.3" # https://github.com/terraform-linters/tflint/releases
tfsec_version: "1.28.5" # https://github.com/aquasecurity/tfsec/releases
tf_summarize_version: "0.3.10" # https://github.com/dineshba/tf-summarize/releases
gitlab_terraform: "1.7.1" # https://gitlab.com/gitlab-org/terraform-images/-/tags
jobs:
build:
name: Build container image and push it to registry
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
id-token: write
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
aws-region: us-east-1
- name: Login to Amazon ECR Public
id: login-ecr-public
uses: aws-actions/amazon-ecr-login@v1
with:
registry-type: public
- name: Parse version
id: get-version
uses: battila7/get-version-action@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push - testing - slim
uses: docker/build-push-action@v3
timeout-minutes: 15
if: ${{ !steps.get-version.outputs.is-semver }}
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
build-args: |
TERRAFORM_VERSION=${{ env.terraform_version }}
TFLINT_VERSION=${{ env.tflint_version }}
TFSEC_VERSION=${{ env.tfsec_version }}
TF_SUMMARIZE_VERSION=${{ env.tf_summarize_version }}
GITLAB_TERRAFORM=${{ env.gitlab_terraform }}
GITHUB_TOKEN=${{ github.token }}
tags: |
cookielab/terraform:${{ github.ref_name }}-slim
public.ecr.aws/cookielab/terraform:${{ github.ref_name }}-slim
ghcr.io/${{ github.repository }}:${{ github.ref_name }}-slim
- name: Build and push - testing - alpine
uses: docker/build-push-action@v3
timeout-minutes: 15
if: ${{ !steps.get-version.outputs.is-semver }}
with:
context: .
file: ./Dockerfile.alpine
platforms: linux/amd64,linux/arm64
push: true
build-args: |
TERRAFORM_VERSION=${{ env.terraform_version }}
TFLINT_VERSION=${{ env.tflint_version }}
TFSEC_VERSION=${{ env.tfsec_version }}
TF_SUMMARIZE_VERSION=${{ env.tf_summarize_version }}
GITLAB_TERRAFORM=${{ env.gitlab_terraform }}
GITHUB_TOKEN=${{ github.token }}
tags: |
cookielab/terraform:${{ github.ref_name }}-alpine
public.ecr.aws/cookielab/terraform:${{ github.ref_name }}-alpine
ghcr.io/${{ github.repository }}:${{ github.ref_name }}-alpine
- name: Build and push - pre-release - slim
uses: docker/build-push-action@v3
timeout-minutes: 15
if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease != '' }}
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
build-args: |
TERRAFORM_VERSION=${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}
TFLINT_VERSION=${{ env.tflint_version }}
TFSEC_VERSION=${{ env.tfsec_version }}
TF_SUMMARIZE_VERSION=${{ env.tf_summarize_version }}
GITLAB_TERRAFORM=${{ env.gitlab_terraform }}
GITHUB_TOKEN=${{ github.token }}
tags: |
cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}-slim
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}-slim
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}-slim
- name: Build and push - pre-release - alpine
uses: docker/build-push-action@v3
timeout-minutes: 15
if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease != '' }}
with:
context: .
file: ./Dockerfile.alpine
platforms: linux/amd64,linux/arm64
push: true
build-args: |
TERRAFORM_VERSION=${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}
TFLINT_VERSION=${{ env.tflint_version }}
TFSEC_VERSION=${{ env.tfsec_version }}
TF_SUMMARIZE_VERSION=${{ env.tf_summarize_version }}
GITLAB_TERRAFORM=${{ env.gitlab_terraform }}
GITHUB_TOKEN=${{ github.token }}
tags: |
cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}-alpine
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}-alpine
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}-alpine
- name: Build and push - stable - slim
uses: docker/build-push-action@v3
timeout-minutes: 15
if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease == '' }}
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
build-args: |
TERRAFORM_VERSION=${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}
TFLINT_VERSION=${{ env.tflint_version }}
TFSEC_VERSION=${{ env.tfsec_version }}
TF_SUMMARIZE_VERSION=${{ env.tf_summarize_version }}
GITLAB_TERRAFORM=${{ env.gitlab_terraform }}
GITHUB_TOKEN=${{ github.token }}
tags: |
cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}-slim
cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}
cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-slim
cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}
cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-slim
cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}
cookielab/terraform:${{ steps.get-version.outputs.major }}-slim
cookielab/terraform:${{ steps.get-version.outputs.major }}
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}-slim
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-slim
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-slim
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.major }}-slim
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.major }}
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}-slim
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-slim
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-slim
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}-slim
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}
- name: Build and push - stable - alpine
uses: docker/build-push-action@v3
timeout-minutes: 15
if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease == '' }}
with:
context: .
file: ./Dockerfile.alpine
platforms: linux/amd64,linux/arm64
push: true
build-args: |
TERRAFORM_VERSION=${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}
TFLINT_VERSION=${{ env.tflint_version }}
TFSEC_VERSION=${{ env.tfsec_version }}
TF_SUMMARIZE_VERSION=${{ env.tf_summarize_version }}
GITLAB_TERRAFORM=${{ env.gitlab_terraform }}
GITHUB_TOKEN=${{ github.token }}
tags: |
cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}-alpine
cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-alpine
cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-alpine
cookielab/terraform:${{ steps.get-version.outputs.major }}-alpine
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.version-without-v }}-alpine
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-alpine
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-alpine
public.ecr.aws/cookielab/terraform:${{ steps.get-version.outputs.major }}-alpine
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}-alpine
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-alpine
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-alpine
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}-alpine