Skip to content

Add build of ui in Dockerfile #1

Add build of ui in Dockerfile

Add build of ui in Dockerfile #1

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- release/v*.*.*
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3
# Log in to GitHub Container Registry
- name: Log in to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Build and Push the Docker Image
- name: Build and Push Docker Image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ github.repository }}:${{ github.ref_name }}
ghcr.io/${{ github.repository_owner }}/${{ github.repository }}:latest