From 3c3a3ad29ca6fca37f6e3ae339ed816ea87538f6 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 17:22:12 +0530 Subject: [PATCH] feat: add CI for production docker container build (#2728) (#2729) (cherry picked from commit 36a8ded92a1e5e81a999d8cc001306f6154a5da7) Co-authored-by: Md Hussain Nagaria <34810212+NagariaHussain@users.noreply.github.com> --- .github/helper/apps.json | 5 +++ .github/workflows/build_image.yml | 66 +++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 .github/helper/apps.json create mode 100644 .github/workflows/build_image.yml diff --git a/.github/helper/apps.json b/.github/helper/apps.json new file mode 100644 index 0000000000..db4b0e3fd4 --- /dev/null +++ b/.github/helper/apps.json @@ -0,0 +1,5 @@ +[ + {"url": "https://github.com/frappe/erpnext","branch": "version-15"}, + {"url": "https://github.com/frappe/payments","branch": "version-15"}, + {"url": "https://github.com/frappe/hrms","branch": "version-15"} +] \ No newline at end of file diff --git a/.github/workflows/build_image.yml b/.github/workflows/build_image.yml new file mode 100644 index 0000000000..76aa8c4986 --- /dev/null +++ b/.github/workflows/build_image.yml @@ -0,0 +1,66 @@ +name: Build Container Image +on: + release: + types: [published] + workflow_dispatch: + push: + branches: + - version-15 + tags: + - "*" +jobs: + build: + name: Build + runs-on: ubuntu-latest + + strategy: + matrix: + arch: [amd64, arm64] + + permissions: + packages: write + + steps: + - name: Checkout Entire Repository + uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + with: + platforms: linux/${{ matrix.arch }} + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Set Branch + run: | + export APPS_JSON_PATH='${{ github.workspace }}/.github/helper/apps.json' + echo "APPS_JSON_BASE64=$(cat $APPS_JSON_PATH | base64 -w 0)" >> $GITHUB_ENV + echo "FRAPPE_BRANCH=version-15" >> $GITHUB_ENV + + - name: Set Image Tag + run: | + echo "IMAGE_TAG=stable" >> $GITHUB_ENV + - uses: actions/checkout@v4 + with: + repository: frappe/frappe_docker + path: builds + + - name: Build and push + uses: docker/build-push-action@v6 + with: + push: true + context: builds + file: builds/images/layered/Containerfile + tags: > + ghcr.io/${{ github.repository }}:${{ github.ref_name }}, + ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} + build-args: | + "FRAPPE_BRANCH=${{ env.FRAPPE_BRANCH }}" + "APPS_JSON_BASE64=${{ env.APPS_JSON_BASE64 }}" \ No newline at end of file