summaryrefslogtreecommitdiff
path: root/.github/workflows/container.yml
diff options
context:
space:
mode:
authorIvan Gabaldon <igabaldon@inetol.net>2025-05-17 18:21:04 +0200
committerGitHub <noreply@github.com>2025-05-17 18:21:04 +0200
commit86373e7c87aeca9fb0d8889a12cfe09c0ffd1df9 (patch)
treeff7f8a9354897f29ce949b023c8401a75a07f7a4 /.github/workflows/container.yml
parent1b08324f26bde0116d3263bd7177da8750f39712 (diff)
[mod] container: build custom base images (#4799)
Instead of using Wolfi base images from cgr.dev and making that mess on the Dockerfile, why don't we build the base images ourselves from Wolfi repos with apko? The intention of this is to simplify the main Dockerfile and avoid having to patch the base image every time, it also simplifies some steps like image ownership management and provides extremely fast builds.
Diffstat (limited to '.github/workflows/container.yml')
-rw-r--r--.github/workflows/container.yml72
1 files changed, 71 insertions, 1 deletions
diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml
index 72e03be50..ccdba770e 100644
--- a/.github/workflows/container.yml
+++ b/.github/workflows/container.yml
@@ -25,10 +25,80 @@ env:
PYTHON_VERSION: "3.13"
jobs:
+ build-base:
+ if: |
+ (github.repository_owner == 'searxng' && github.event.workflow_run.conclusion == 'success')
+ || github.event_name == 'workflow_dispatch'
+ name: Build base
+ runs-on: ubuntu-24.04
+ permissions:
+ # Organization GHCR
+ packages: write
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ with:
+ persist-credentials: "false"
+
+ - name: Get date
+ id: date
+ run: echo "date=$(date +'%Y%m%d')" >>$GITHUB_OUTPUT
+
+ - name: Check cache apko
+ id: cache-apko
+ uses: actions/cache/restore@v4
+ with:
+ # yamllint disable-line rule:line-length
+ key: "apko-${{ steps.date.outputs.date }}-${{ hashFiles('./container/base.yml', './container/base-builder.yml') }}"
+ path: "/tmp/.apko/"
+ lookup-only: true
+
+ - if: steps.cache-apko.outputs.cache-hit != 'true'
+ name: Setup cache apko
+ uses: actions/cache@v4
+ with:
+ # yamllint disable-line rule:line-length
+ key: "apko-${{ steps.date.outputs.date }}-${{ hashFiles('./container/base.yml', './container/base-builder.yml') }}"
+ restore-keys: "apko-${{ steps.date.outputs.date }}-"
+ path: "/tmp/.apko/"
+
+ - if: steps.cache-apko.outputs.cache-hit != 'true'
+ name: Setup apko
+ run: |
+ eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
+ brew install apko
+
+ - if: steps.cache-apko.outputs.cache-hit != 'true'
+ name: Login to GHCR
+ uses: docker/login-action@v3
+ with:
+ registry: "ghcr.io"
+ username: "${{ github.repository_owner }}"
+ password: "${{ secrets.GITHUB_TOKEN }}"
+
+ - if: steps.cache-apko.outputs.cache-hit != 'true'
+ name: Build
+ run: |
+ eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
+
+ apko publish ./container/base.yml ghcr.io/${{ github.repository_owner }}/base:searxng \
+ --cache-dir=/tmp/.apko/ \
+ --sbom=false \
+ --vcs=false \
+ --log-level=debug
+
+ apko publish ./container/base-builder.yml ghcr.io/${{ github.repository_owner }}/base:searxng-builder \
+ --cache-dir=/tmp/.apko/ \
+ --sbom=false \
+ --vcs=false \
+ --log-level=debug
+
build:
- if: github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success'
+ if: github.repository_owner == 'searxng' || github.event_name == 'workflow_dispatch'
name: Build (${{ matrix.arch }})
runs-on: ${{ matrix.os }}
+ needs: build-base
strategy:
fail-fast: false
matrix: