Skip to content

Update python Docker tag to v3.14 #1048

Update python Docker tag to v3.14

Update python Docker tag to v3.14 #1048

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Process metadata (tags, labels)
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ secrets.DOCKER_ORGANIZATION }}/${{ env.IMAGE_NAME }}
${{ vars.REGISTRY_GITHUB }}/${{ env.IMAGE_NAME }}
- name: Build image
uses: docker/build-push-action@v6
with:
context: .
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}