Skip to content

Support build arch for base images. #407

Support build arch for base images.

Support build arch for base images. #407

Workflow file for this run

name: Build Base Image
on:
push:
workflow_dispatch:
inputs:
event:
description: 'Input your event'
required: true
default: ''
env:
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_ACCESSTOKEN }}
jobs:
build:
name: Build Base Image
runs-on: 'ubuntu-latest'
env:
PHP_VERSION: '${{ matrix.php-version }}'
ALPINE_VERSION: '${{ matrix.alpine-version }}'
strategy:
matrix:
php-version: [ '8.1', '8.2', '8.3' ]
alpine-version: [ '3.16', '3.17', '3.18', '3.19', 'edge' ]
exclude:
- php-version: '8.3'
alpine-version: '3.16'
- php-version: '8.3'
alpine-version: '3.17'
- php-version: '8.3'
alpine-version: '3.18'
- php-version: '8.2'
alpine-version: '3.16'
- php-version: '8.2'
alpine-version: '3.17'
- php-version: '8.1'
alpine-version: 'edge'
max-parallel: 12
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build
run: |
docker buildx ls
docker buildx build --platform linux/amd64 -t hyperf/hyperf:${PHP_VERSION}-alpine-v${ALPINE_VERSION}-base --build-arg ALPINE_VERSION=${ALPINE_VERSION} ${PHP_VERSION}/alpine/base
# docker run --entrypoint php -v $PWD/tests/base:/opt/www hyperf/hyperf:${{ matrix.php-version }}-alpine-v${{ matrix.alpine-version }}-base /opt/www/openssl.php
- name: Push Images to Docker Hub
if: ${{ github.event.inputs.event == 'publish' }}
run: |
docker login --username limingxinleo -p $DOCKERHUB_TOKEN
docker push hyperf/hyperf:${{ matrix.php-version }}-alpine-v${{ matrix.alpine-version }}-base