Delete .github/workflows/docker-image.yml

This commit is contained in:
csf123321
2026-03-28 01:03:26 +08:00
committed by GitHub
parent 8a5f5ee9ea
commit 7c01b5c265
-35
View File
@@ -1,35 +0,0 @@
name: Docker Image CI
on:
push:
tags: ['v*']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Logout Docker (avoid wrong credentials)
run: docker logout || true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
- name: uv lock
working-directory: backend
run: uv lock
- name: Build Docker Image (with BuildKit)
working-directory: backend
run: |
docker build \
--progress=plain \
-t insightradar-backend:${{ github.ref_name }} \
-t insightradar-backend:latest \
.