Build cim-ui image #119
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
# | |
# CIM is splitted in two parts: | |
# - cads-cim-api | |
# - cads-cim-ui | |
# | |
# We need to build first the cads-cim-api and then the cads-cim-ui | |
# | |
name: Build cim-ui image | |
on: | |
workflow_dispatch: | |
inputs: | |
deployment_branch: | |
description: 'Deployment branch' | |
required: true | |
default: 'main' | |
image_tag: | |
description: 'Image tag' | |
required: true | |
default: 'latest' | |
jobs: | |
build-docker-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Login to harbor registry | |
uses: docker/login-action@v2 | |
with: | |
registry: "${{ secrets.HARBOR_IP }}" | |
username: ${{ secrets.HARBOR_USER }} | |
password: ${{ secrets.HARBOR_TOKEN }} | |
- name: Setup docker context for buildx | |
id: buildx-context | |
run: docker context create builders || docker context use builders | |
- name: Create BuildKit Configuration | |
run: | | |
cat <<EOF > buildkitd.toml | |
[registry."${{ secrets.HARBOR_IP }}"] | |
http = false | |
insecure = false | |
ca=["/etc/ssl/certs/ca-certificates.crt"] | |
EOF | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
version: v0.9.1 | |
endpoint: builders | |
buildkitd-flags: --debug | |
config: buildkitd.toml | |
- name: Checkout cads-cim-api repo | |
uses: actions/checkout@v3 | |
with: | |
repository: ecmwf-projects/cads-cim-api | |
ref: ${{ inputs.deployment_branch }} | |
token: ${{ secrets.CADS_PAT }} | |
path: cads-cim-api | |
- name: Checkout cads-cim-ui repo | |
uses: actions/checkout@v3 | |
with: | |
repository: ecmwf-projects/cads-cim-ui | |
ref: ${{ inputs.deployment_branch }} | |
token: ${{ secrets.CADS_PAT }} | |
path: cads-cim-ui | |
- name: Build API and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: cads-cim-api | |
push: true | |
tags: ${{ secrets.HARBOR_IP }}/cads/cads-backoffice-deployment/cads-cim-api:${{ github.event.inputs.image_tag }} | |
file: cads-cim-api/Dockerfile | |
- name: Build UI and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: cads-cim-ui | |
push: true | |
# Arguments for using the cads-cim-api image in the cads-cim-ui build | |
build-args: CIM_API_IMAGE=${{ secrets.HARBOR_IP }}/cads/cads-backoffice-deployment/cads-cim-api:${{ github.event.inputs.image_tag }} | |
pull: true # We need to pull the backend image to build the frontend | |
tags: ${{ secrets.HARBOR_IP }}/cads/cads-backoffice-deployment/cads-cim-ui:${{ github.event.inputs.image_tag }} | |
file: cads-cim-ui/Dockerfile |