From 0fb25ea39535444884e4e4f25acd2bc8fe387df8 Mon Sep 17 00:00:00 2001 From: SpecialX <47072643+wangxiner55@users.noreply.github.com> Date: Fri, 19 Dec 2025 14:09:20 +0800 Subject: [PATCH] feat: setup standalone build and docker deployment --- .gitea/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9841f71..546958c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -46,12 +46,18 @@ jobs: deploy: needs: build-and-test runs-on: CDCD + container: dockerreg.eazygame.cn/node:22-bookworm steps: - name: Download artifacts uses: actions/download-artifact@v3 with: name: next-build + - name: Install Docker CLI + run: | + apt-get update + apt-get install -y docker.io + - name: Deploy to Docker run: | docker build -t nextjs-app .