From 09203f5e7e647b9e43f15560190365939cf3ea16 Mon Sep 17 00:00:00 2001 From: kshitijrajsharma Date: Tue, 3 Sep 2024 19:53:48 +0545 Subject: [PATCH] ci(dockertest): adds docker build test on PR --- .github/workflows/docker_build_test.yml | 72 +++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/workflows/docker_build_test.yml diff --git a/.github/workflows/docker_build_test.yml b/.github/workflows/docker_build_test.yml new file mode 100644 index 00000000..c8d6bfef --- /dev/null +++ b/.github/workflows/docker_build_test.yml @@ -0,0 +1,72 @@ +name: Build Docker Images on PR + +on: + pull_request: + branches: + - master + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +jobs: + build-api-image: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + + - name: Log in to the Container registry + uses: docker/login-action@v1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for API Docker + id: meta_api + uses: docker/metadata-action@v3 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}_api + + - name: Build API Docker image + uses: docker/build-push-action@v3 + with: + context: backend/ + file: backend/Dockerfile_CPU + push: false # Set to false to not push the image + tags: ${{ steps.meta_api.outputs.tags }} + labels: ${{ steps.meta_api.outputs.labels }} + + build-worker-image: + needs: build-api-image + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + + - name: Log in to the Container registry + uses: docker/login-action@v1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Worker Docker + id: meta_worker + uses: docker/metadata-action@v3 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}_worker + + - name: Build Worker Docker image + uses: docker/build-push-action@v3 + with: + context: backend/ + file: backend/Dockerfile + push: false # Set to false to not push the image + tags: ${{ steps.meta_worker.outputs.tags }} + labels: ${{ steps.meta_worker.outputs.labels }}