Merge pull request #140 from abetlen/Niek/main

Add Dockerfile
This commit is contained in:
Andrei
2023-05-02 01:06:00 -04:00
committed by GitHub
5 changed files with 223 additions and 1 deletions

33
.github/workflows/build-docker.yaml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: Build Docker
on: workflow_dispatch
jobs:
docker:
name: Build and push Docker image
runs-on: ubuntu-latest
needs: build-n-publish
steps:
- name: Checkout
uses: actions/checkout@v3
- 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:
push: true # push to registry
pull: true # always fetch the latest base images
platforms: linux/amd64,linux/arm64 # build for both amd64 and arm64
tags: ghcr.io/abetlen/llama-cpp-python:latest

View File

@@ -28,4 +28,4 @@ jobs:
# if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}