Skip to content

Merge pull request #481 from sugarforever/feature/history-aware-rag #225

Merge pull request #481 from sugarforever/feature/history-aware-rag

Merge pull request #481 from sugarforever/feature/history-aware-rag #225

Workflow file for this run

name: Build and push Docker Images for multiple platforms
on:
push:
branches: [ "main" ]
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Generate a timestamp and store it in a variable
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64/v8
push: true
tags: 0001coder/chatollama:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache