llama.cpp/.github/workflows/build-docker.yaml

39 lines
1,002 B
YAML
Raw Normal View History

2023-05-02 05:04:02 +00:00
name: Build Docker
on: workflow_dispatch
2023-05-02 05:13:43 +00:00
permissions:
contents: write
2023-05-02 05:23:17 +00:00
packages: write
2023-05-02 05:13:43 +00:00
2023-05-02 05:04:02 +00:00
jobs:
docker:
name: Build and push Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
2023-05-02 05:11:34 +00:00
with:
submodules: "true"
2023-05-02 05:04:02 +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
uses: docker/build-push-action@v4
with:
2023-05-02 05:16:44 +00:00
context: .
2023-05-02 05:04:02 +00:00
push: true # push to registry
pull: true # always fetch the latest base images
platforms: linux/amd64,linux/arm64 # build for both amd64 and arm64
2023-05-04 04:02:46 +00:00
tags: ghcr.io/abetlen/llama-cpp-python:latest