Skip to content

chore: pin torch==2.11.0 to matching base image and prevent CUDA bloat #26

chore: pin torch==2.11.0 to matching base image and prevent CUDA bloat

chore: pin torch==2.11.0 to matching base image and prevent CUDA bloat #26

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