-
Notifications
You must be signed in to change notification settings - Fork 292
78 lines (70 loc) · 2.73 KB
/
docker-build-nightly.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
name: Publish nightly Docker image
on:
push:
branches:
- main
jobs:
push_to_registry:
name: Push nightly Docker image to Docker Hub
runs-on: ubuntu-latest
strategy:
matrix:
variant: [root, nonroot, debug]
permissions:
packages: write
contents: read
env:
REGISTRY: arizephoenix
IMAGE_NAME: phoenix
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set BASE_IMAGE environment variable
id: set-base-image
run: |
if [ "${{ matrix.variant }}" == "root" ]; then
echo "BASE_IMAGE=gcr.io/distroless/python3-debian12" >> $GITHUB_ENV
elif [ "${{ matrix.variant }}" == "debug" ]; then
echo "BASE_IMAGE=gcr.io/distroless/python3-debian12:debug" >> $GITHUB_ENV
elif [ "${{ matrix.variant }}" == "nonroot" ]; then
echo "BASE_IMAGE=gcr.io/distroless/python3-debian12:nonroot" >> $GITHUB_ENV
else
echo "BASE_IMAGE=gcr.io/distroless/python3-debian12" >> $GITHUB_ENV
fi
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Extract commit hash
id: extract_commit
run: echo "COMMIT_HASH=${GITHUB_SHA::7}" >> $GITHUB_ENV
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
${{ matrix.variant == 'root' && 'nightly' || '' }}
${{ matrix.variant == 'nonroot' && 'nightly-nonroot' || '' }}
${{ matrix.variant == 'debug' && 'nightly-debug' || '' }}
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
context: .
file: ./Dockerfile
push: true
sbom: true
provenance: mode=max
tags: |
${{ matrix.variant == 'root' && format('{0}/{1}:nightly', env.REGISTRY, env.IMAGE_NAME) || '' }}
${{ matrix.variant == 'root' && format('{0}/{1}:commit-{2}', env.REGISTRY, env.IMAGE_NAME, env.COMMIT_HASH) || '' }}
${{ matrix.variant == 'nonroot' && format('{0}/{1}:nightly-nonroot', env.REGISTRY, env.IMAGE_NAME) || '' }}
${{ matrix.variant == 'debug' && format('{0}/{1}:nightly-debug', env.REGISTRY, env.IMAGE_NAME) || '' }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}