Skip to content

Merge branch 'main' of https://github.com/danny-avila/rag_api into main #7

Merge branch 'main' of https://github.com/danny-avila/rag_api into main

Merge branch 'main' of https://github.com/danny-avila/rag_api into main #7

Workflow file for this run

name: Docker Dev Images Build
on:
workflow_dispatch:
push:
paths-ignore:
- 'README.md'
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
# Check out the repository
- name: Checkout
uses: actions/checkout@v4
# Set up QEMU
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
# Set up Docker Buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Log in to GitHub Container Registry
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Build and push Docker image
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/librechat-rag-api-dev:${{ github.sha }}
ghcr.io/${{ github.repository_owner }}/librechat-rag-api-dev:latest
platforms: linux/amd64,linux/arm64