Skip to content

chore: slim Dockerfile (skip weight downloads, use runtime lazy loading) #21

chore: slim Dockerfile (skip weight downloads, use runtime lazy loading)

chore: slim Dockerfile (skip weight downloads, use runtime lazy loading) #21

Workflow file for this run

name: Build Docker
on:
push:
workflow_dispatch:
permissions:
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: docker build -t ghcr.io/${{ github.repository }}:latest .
- run: docker push ghcr.io/${{ github.repository }}:latest