-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (68 loc) · 2.02 KB
/
Docker.yml
File metadata and controls
77 lines (68 loc) · 2.02 KB
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
name: Reusable Docker Build
on:
workflow_call:
inputs:
image_name:
required: true
type: string
image_version:
required: true
type: string
image_build_args:
required: true
type: string
image_context:
required: true
type: string
image_file:
required: true
type: string
secrets:
DOCKER_USERNAME:
required: true
DOCKER_PASSWORD:
required: true
jobs:
build:
runs-on: ubuntu-latest
environment: MLOpsPython
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v2
with:
images: ${{ inputs.image_name }}
- name: Build and push Docker image
if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v3
with:
context: ${{ inputs.image_context }}
file : ${{ inputs.image_file }}
build-args: ${{ inputs.image_build_args }}
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ inputs.image_name }}:${{ inputs.image_version }},${{ inputs.image_name }}:latest
labels: ${{ steps.meta.outputs.labels }}
- name: Build and push Docker image
if: github.ref != 'refs/heads/main'
uses: docker/build-push-action@v3
with:
context: ${{ inputs.image_context }}
file : ${{ inputs.image_file }}
build-args: ${{ inputs.image_build_args }}
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ inputs.image_name }}:${{ inputs.image_version }}
labels: ${{ steps.meta.outputs.labels }}