Skip to content

cleanup: avoid filter reparse + remove custom model #24

cleanup: avoid filter reparse + remove custom model

cleanup: avoid filter reparse + remove custom model #24

name: Create Frontend Docker Images
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- 'main'
paths:
- 'dashboard/**'
- 'search/**'
- 'chat/**'
- '.github/workflows/**'
jobs:
build_chat:
name: Push Chat Image
runs-on: blacksmith-2vcpu-ubuntu-2204
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Setup buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
trieve/chat
tags: |
type=raw,latest
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
cache-from: type=registry,ref=trieve/buildcache:chat
cache-to: type=registry,ref=trieve/buildcache:chat,mode=max
context: chat/
file: ./chat/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build_search:
name: Push Search Image
runs-on: blacksmith-2vcpu-ubuntu-2204
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Setup buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
trieve/search
tags: |
type=raw,latest
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
cache-from: type=registry,ref=trieve/buildcache:search
cache-to: type=registry,ref=trieve/buildcache:search,mode=max
context: search/
file: ./search/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build_dashboard:
name: Push Dashboard Image
runs-on: blacksmith-2vcpu-ubuntu-2204
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Setup buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
trieve/dashboard
tags: |
type=raw,latest
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
cache-from: type=registry,ref=trieve/buildcache:dashboard
cache-to: type=registry,ref=trieve/buildcache:dashboard,mode=max
context: dashboard/
file: ./dashboard/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}