-
Notifications
You must be signed in to change notification settings - Fork 4
111 lines (98 loc) · 3.39 KB
/
docker-extra.yaml
File metadata and controls
111 lines (98 loc) · 3.39 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
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
name: docker extra
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- 'docker/mlflow/**'
pull_request:
branches: [ main ]
paths:
- 'docker/mlflow/**'
env:
REGISTRY: docker.io
DOCKER_IMAGE_NAME: cogstacksystems/cogstack-mlflow-ui
jobs:
lint:
runs-on: ubuntu-latest
container: hadolint/hadolint:latest-debian
steps:
- uses: actions/checkout@v4
- name: Lint
run: hadolint --ignore DL3008 --ignore DL3013 --ignore DL3003 --ignore DL4006 docker/mlflow/**/Dockerfile*
build-and-push:
needs: lint
if: |
github.repository == 'CogStack/CogStack-ModelServe' &&
(
github.ref == 'refs/heads/main' ||
github.event_name == 'pull_request' ||
github.event_name == 'workflow_dispatch'
)
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
attestations: write
concurrency: build-and-push
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Extract MLflow UI meta
id: cms_mlflow_ui_meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha
type=match,pattern=cogstack-modelserve/v(\d+\.\d+\.\d+),group=1
- name: Build and push MLflow UI
uses: docker/build-push-action@v6
id: build_and_push_mlflow_ui
with:
platforms: linux/amd64,linux/arm64
context: .
file: docker/mlflow/server/Dockerfile
push: true
tags: ${{ steps.cms_mlflow_ui_meta.outputs.tags }}
labels: ${{ steps.cms_mlflow_ui_meta.outputs.labels }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
- name: Attest image artifacts
uses: actions/attest-build-provenance@v2
id: attest
with:
subject-name: ${{ env.REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}
subject-digest: ${{ steps.build_and_push_mlflow_ui.outputs.digest }}
push-to-registry: true
- name: Update Docker Hub description
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: ${{ env.DOCKER_IMAGE_NAME }}
readme-filepath: ./docker/mlflow/server/README.md
continue-on-error: true # This step requires DockerHub delete scope which is not guaranteed.