feat(backend): add k3d gpu image builder #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Images | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- ready_for_review | |
- review_requested | |
- synchronize | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build-and-publish-images: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and Publish k3d-gpu | |
run: | | |
docker build \ | |
--platform linux/amd64 \ | |
--build-arg K3S_TAG=v1.28.8-k3s1 \ | |
--build-arg CUDA_TAG=12.4.1-base-ubuntu22.04 \ | |
-t ghcr.io/defenseunicorns/leapfrogai/k3d-gpu:latest \ | |
-f packages/k3d-gpu/Dockerfile . | |
docker push ghcr.io/defenseunicorns/leapfrogai/k3d-gpu:latest |