Skip to content

(Backend) Create and publish Docker image #501

(Backend) Create and publish Docker image

(Backend) Create and publish Docker image #501

name: (Backend) Create and publish Docker image
on:
push:
branches: [ 'main' ]
paths:
- 'backend/**'
create:
tags: [ '*' ]
paths:
- 'backend/**'
concurrency:
group: "docker-build-backend"
cancel-in-progress: false
env:
REGISTRY: ghcr.io
IMAGE_NAME: jt-foss/backend
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
# Set default working directory
defaults:
run:
working-directory: ./backend # Change the working directory to /backend
steps:
- name: Checkout 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
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: ./backend
file: ./backend/docker/rust/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly
labels: ${{ steps.meta.outputs.labels }}
build-and-push-image-on-tag:
if: github.event_name == 'create' && github.event.ref_type == 'tag'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
# Set default working directory
defaults:
run:
working-directory: ./backend # Change the working directory to /backend
steps:
- name: Checkout 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
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: ./backend
file: ./backend/docker/rust/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.event.ref }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
labels: ${{ steps.meta.outputs.labels }}