Skip to content

Commit

Permalink
ci(auth): add workflow to publish experimental auth docker image (#4557)
Browse files Browse the repository at this point in the history
  • Loading branch information
axiomofjoy authored and RogerHYang committed Sep 21, 2024
1 parent f8f40b6 commit ce2ba76
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/docker-build-experimental.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: Publish experimental Docker image

on:
push:
branches:
- auth

jobs:
push_to_registry:
name: Push experimental 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' && 'dangerously-experimental' || '' }}
${{ matrix.variant == 'nonroot' && 'dangerously-experimental' || '' }}
${{ matrix.variant == 'debug' && 'dangerously-experimental' || '' }}
- 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}:dangerously-experimental', env.REGISTRY, env.IMAGE_NAME) || '' }}
${{ matrix.variant == 'root' && format('{0}/{1}:dangerously-experimental-commit-{2}', env.REGISTRY, env.IMAGE_NAME, env.COMMIT_HASH) || '' }}
${{ matrix.variant == 'nonroot' && format('{0}/{1}:dangerously-experimental-nonroot', env.REGISTRY, env.IMAGE_NAME) || '' }}
${{ matrix.variant == 'debug' && format('{0}/{1}:dangerously-experimental-debug', env.REGISTRY, env.IMAGE_NAME) || '' }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}

0 comments on commit ce2ba76

Please sign in to comment.