Skip to content

Bump python from 3.12.3-alpine3.19 to 3.12.4-alpine3.19 #169

Bump python from 3.12.3-alpine3.19 to 3.12.4-alpine3.19

Bump python from 3.12.3-alpine3.19 to 3.12.4-alpine3.19 #169

name: Build the helper container image
on:
pull_request:
branches:
- master
paths:
- .github/workflows/build-helper-image.yaml
- Dockerfile
- requirements.txt
push:
branches:
- master
paths:
- .github/workflows/build-helper-image.yaml
- Dockerfile
- requirements.txt
workflow_dispatch:
env:
image_name: ghcr.io/${{ github.repository }}-helper
jobs:
build:
name: Build the helper container image
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build the container image
uses: docker/build-push-action@v2
with:
build-args: |
BUILDKIT_INLINE_CACHE=1
cache-from: |
${{ env.image_name }}
load: true
tags: ${{ env.image_name }}
- name: Log in to GitHub container registry
if: github.event_name == 'push' || github.event_name == 'release'
uses: docker/login-action@v3
with:
registry: ghcr.io
password: ${{ github.token }}
username: ${{ github.actor }}
- name: Push latest image to registry
if: github.event_name == 'push'
run: docker image push ${{ env.image_name }}