From 1f2f1b60b930be6f5addbda9e7cabf6bc30ae71c Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Tue, 12 May 2026 19:29:33 -0700 Subject: [PATCH] Push to local registry for testing --- .gitea/workflows/build.yaml | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 59cd13a..59aac48 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -23,11 +23,38 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: build and push rocm-aarch64-base + run: | + docker buildx build \ + --platform=linux/arm64 \ + -t docker.mistox.net/rocm-aarch64-base:latest \ + -f rocm-base-aarch64-dockerfile \ + --push \ + . + - name: build and push comfyui-rocm run: | docker buildx build \ --platform=linux/arm64 \ - -t mistox/comfyui-rocm-ampere:latest \ + -t docker.mistox.net/comfyui-rocm-ampere:latest \ -f comfyui-rocm-dockerfile \ --push \ + . + + - name: build and push comfyui-cuda + run: | + docker buildx build \ + --platform=linux/arm64 \ + -t docker.mistox.net/comfyui-cuda-ampere:latest \ + -f comfyui-cuda-dockerfile \ + --push \ + . + + - name: build and push uvicorn + run: | + docker buildx build \ + --platform=linux/arm64 \ + -t docker.mistox.net/uvicorn-ampere:latest \ + -f uvicorn-dockerfile \ + --push \ . \ No newline at end of file