kabos-os/.github/workflows/build-image.yml

24 lines
390 B
YAML

name: Build KabOS Image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Show files
run: ls -la
- name: Build KabOS
run: docker build -t kabos -f Containerfile.nvidia .
- name: Done
run: echo "Build complete"