2023-06-10 03:23:16 +00:00
|
|
|
name: Build Docker
|
|
|
|
|
|
|
|
on: workflow_dispatch
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
name: Build and push Docker image
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-07-08 07:43:17 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
2024-02-14 04:53:56 +00:00
|
|
|
submodules: "recursive"
|
2023-06-10 03:23:16 +00:00
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
|
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Build and push
|
2023-11-23 06:06:47 +00:00
|
|
|
id: docker_build
|
2023-06-10 03:23:16 +00:00
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
context: .
|
2023-07-08 08:04:11 +00:00
|
|
|
file: "docker/simple/Dockerfile"
|
2023-11-23 06:06:47 +00:00
|
|
|
push: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
|
|
pull: true
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
tags: |
|
|
|
|
ghcr.io/abetlen/llama-cpp-python:latest
|
|
|
|
ghcr.io/abetlen/llama-cpp-python:${{ github.ref_name }}
|
|
|
|
build-args: |
|
|
|
|
BUILDKIT_INLINE_CACHE=1
|
|
|
|
|
|
|
|
- name: Publish to GitHub Tag
|
|
|
|
if: steps.docker_build.outputs.digest && startsWith(github.ref, 'refs/tags/')
|
|
|
|
run: |
|
2023-12-11 15:39:51 +00:00
|
|
|
echo "Docker image published for tag: ${{ github.ref_name }}"
|