From ba66d406dca1df343744cb36f45bf0be8e6b1b94 Mon Sep 17 00:00:00 2001 From: SpecialX <47072643+wangxiner55@users.noreply.github.com> Date: Fri, 19 Dec 2025 14:45:55 +0800 Subject: [PATCH] fix: reinstall docker cli in deploy container --- .gitea/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 647b743..546958c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -53,6 +53,11 @@ jobs: 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 .