Skip to content

fix: add docker build for Debian image (backport #46) #141

fix: add docker build for Debian image (backport #46)

fix: add docker build for Debian image (backport #46) #141

Workflow file for this run

name: build
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
- stable/**
jobs:
image:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: ubuntu
image-name: python-base-ubuntu
from: ubuntu:24.04
- name: ubuntu-cloud-archive
image-name: python-base-ubuntu-cloud-archive
from: ghcr.io/vexxhost/ubuntu-cloud-archive:2025.1@sha256:8908e9e220767bc5f62c79a92a0675986f9df4cda809fefa1401d812f708ac14
- name: ubuntu-cloud-archive-legacy
image-name: python-base
from: ghcr.io/vexxhost/ubuntu-cloud-archive:2025.1@sha256:8908e9e220767bc5f62c79a92a0675986f9df4cda809fefa1401d812f708ac14
- name: debian
image-name: python-base-debian
from: debian:trixie
- name: rockylinux
image-name: python-base-rockylinux
from: rockylinux:9
- name: almalinux
image-name: python-base-almalinux
from: almalinux:9
permissions:
contents: read
id-token: write
packages: write
pull-requests: write
steps:
- uses: vexxhost/docker-atmosphere/.github/actions/build-image@main
with:
image-name: ${{ matrix.image-name }}
build-args: FROM=${{ matrix.from }}
push: ${{ github.event_name != 'pull_request' }}