Skip to content

Fix hatch build config #18

Fix hatch build config

Fix hatch build config #18

Workflow file for this run

name: Build docker images
on: [push, pull_request, workflow_call, workflow_dispatch]
jobs:
publish-docker-cuda:
name: 🐳 Publish CUDA GPU docker image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write # This is used to complete the identity challenge with sigstore/fulcio
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/[email protected]
with:
cosign-release: 'v2.1.1'
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch,suffix=-gpu
type=semver,pattern={{version}},suffix=-gpu
- run: df -h
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v4
with:
context: .
file: Dockerfile.gpu
build-args: |
GPU_ENABLED=true
# BASE_IMAGE=nvcr.io/nvidia/pytorch:23.06-py3
# BASE_IMAGE=nvcr.io/nvidia/cuda:12.2.0-devel-ubuntu22.04
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
# Sign the resulting Docker image digest except on PRs.
- name: Sign the published Docker image
if: ${{ github.event_name != 'pull_request' }}
env:
TAGS: ${{ steps.meta.outputs.tags }}
DIGEST: ${{ steps.build-and-push.outputs.digest }}
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}