forked from litespeedtech/ols-dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(debian): Changes to Debian 12 to Correlate with Latest Official …
…OLS Ubuntu 22.04 Build * Fixes #102 * Updates the Docker base image to use Debian 12. * Updates build library requirements. * Adds pull request Docker image build testing.
- Loading branch information
Showing
3 changed files
with
71 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: docker-build | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- develop | ||
|
||
env: | ||
OLS_VERSION: 1.7.17 | ||
PHP_STABLE_VERSION: '8.2.8' | ||
REGISTRY: ghcr.io | ||
|
||
jobs: | ||
buildx: | ||
runs-on: self-hosted | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
PHP_VERSION: ['8.0.29', '8.1.21', '8.2.8'] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags | ||
|
||
# https://github.com/marketplace/actions/docker-setup-buildx | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
# https://github.com/marketplace/actions/docker-login | ||
- name: Login to GitHub Packages | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
logout: false | ||
|
||
# https://github.com/orgs/community/discussions/26625#discussioncomment-3252582 | ||
- name: Determine PHP Major/Minor Version | ||
id: php-version | ||
run: | | ||
_0=$(echo ${{ matrix.PHP_VERSION }} | cut -d. -f1) | ||
_1=$(echo ${{ matrix.PHP_VERSION }} | cut -d. -f2) | ||
echo "_0=$_0" >> $GITHUB_OUTPUT | ||
echo "_1=$_1" >> $GITHUB_OUTPUT | ||
# https://github.com/marketplace/actions/build-and-push-docker-images | ||
- name: Build Docker Images | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: template | ||
platforms: linux/arm64 | ||
provenance: false | ||
build-args: | | ||
OLS_VERSION=${{ env.OLS_VERSION }} | ||
PHP_VERSION=${{ matrix.PHP_VERSION }} | ||
PHP_MAJOR_VERSION=${{ steps.php-version.outputs._0 }} | ||
PHP_MINOR_VERSION=${{ steps.php-version.outputs._1 }} | ||
push: false | ||
tags: ${{ env.REGISTRY }}/ndigitals/openlitespeed:${{ env.OLS_VERSION }}-lsphp${{ steps.php-version.outputs._0 }}${{ steps.php-version.outputs._1 }} | ||
no-cache: ${{ github.event_name == 'workflow_dispatch' && true || false }} | ||
cache-from: type=registry,ref=${{ env.REGISTRY }}/ndigitals/openlitespeed:latest | ||
cache-to: type=inline | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters