Skip to content

chore(deps): update ubuntu:20.04 docker digest to fa17826 (#55) #12

chore(deps): update ubuntu:20.04 docker digest to fa17826 (#55)

chore(deps): update ubuntu:20.04 docker digest to fa17826 (#55) #12

Workflow file for this run

name: Docker image (Python)
on:
push:
branches:
- master
paths:
- 'python.Dockerfile'
- 'python.entrypoint.sh'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
python:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[skip-ci]') }}
strategy:
fail-fast: false
matrix:
python_version: [3.8.19, 3.9.19, 3.10.14, 3.11.9, 3.12.5]
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up QEMU
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3
- name: Login to DockerHub
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract first two elements
id: extract
run: |
str="${{ matrix.python_version }}"
IFS='.' read -ra arr <<< "$str"
result="${arr[0]}.${arr[1]}"
echo "::set-output name=result::$result"
- name: Build and push
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6
with:
build-args: |
PYTHON_VERSION=${{ matrix.python_version }}
PYTHON_VERSION_SHORT=${{ steps.extract.outputs.result }}
context: .
file: python.Dockerfile
platforms: linux/amd64, linux/arm64
push: true
tags: "djoh/all-in-one:python${{ steps.extract.outputs.result }}"
cache-from: type=registry,ref=djoh/all-in-one:buildcache_python${{ matrix.python_version }}
cache-to: type=registry,ref=djoh/all-in-one:buildcache_python${{ matrix.python_version }},mode=max