🔧 fix: Proper response on authorization failures (#37) #32
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
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 | |
strategy: | |
matrix: | |
include: | |
- target: main | |
file: Dockerfile | |
image_name: librechat-rag-api-dev | |
- target: lite | |
file: Dockerfile.lite | |
image_name: librechat-rag-api-dev-lite | |
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 images for each target | |
- name: Build and push Docker images | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ${{ matrix.file }} | |
push: true | |
tags: | | |
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ github.sha }} | |
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:latest | |
platforms: linux/amd64,linux/arm64 | |
target: ${{ matrix.target }} |