name: Build and push Nginx on alpine based container images on: push: branches: - master jobs: build: name: Build nginx container images runs-on: ubuntu-latest container: image: ghcr.io/catthehacker/ubuntu:act-latest strategy: matrix: flavors: ["cli", "full", "debug"] version: - os: "alpine" os_version: "3.5" php_version: "5.6" php_ver_short: "5" steps: - name: Check out repository code uses: actions/checkout@v4 - name: Login to quay.io uses: docker/login-action@v3 with: registry: quay.io username: ${{ vars.QUAY_USERNAME }} password: ${{ secrets.QUAY_SECRET }} # - name: Set up QEMU # uses: docker/setup-qemu-action@v3 - name: Setup Docker buildx uses: docker/setup-buildx-action@v3 - name: Build and push php on alpine base uses: docker/build-push-action@v5 with: push: true context: . file: Dockerfile.${{ matrix.version.os }} build-args: | OS_VERSION=${{ matrix.version.os }} PHP_VERSION=${{ matrix.version.php_version }} PHP_VER_SHORT=${{ matrix.version.php_ver_short }} tags: | quay.io/sindigilive/php:${{ matrix.version.php_version }}-${{ matrix.version.flavor }}-${{ matrix.version.os }} # build-latest: # name: Build latest nginx alpine based container images # runs-on: ubuntu-latest # needs: # - build # container: # image: ghcr.io/catthehacker/ubuntu:act-latest # steps: # - name: Check out repository code # uses: actions/checkout@v4 # - name: Login to quay.io # uses: docker/login-action@v3 # with: # registry: quay.io # username: ${{ vars.QUAY_USERNAME }} # password: ${{ secrets.QUAY_SECRET }} # # - name: Set up QEMU # # uses: docker/setup-qemu-action@v3 # - name: Setup Docker buildx # uses: docker/setup-buildx-action@v3 # - name: Build and push latest nginx # uses: docker/build-push-action@v5 # with: # # platforms: linux/amd64,linux/arm64 # push: true # context: . # file: Dockerfile.alpine # tags: | # quay.io/sindigilive/nginx:alpine # quay.io/sindigilive/nginx:latest