fix: remove invalid docker binary mount and reinstall cli
Some checks failed
CI / build-and-test (push) Successful in 1m19s
CI / deploy (push) Failing after 3s

This commit is contained in:
SpecialX
2025-12-19 14:55:47 +08:00
parent 431924526f
commit 277d671d9f

View File

@@ -50,13 +50,17 @@ jobs:
image: dockerreg.eazygame.cn/node:22-bookworm image: dockerreg.eazygame.cn/node:22-bookworm
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- /usr/bin/docker:/usr/bin/docker
steps: steps:
- name: Download artifacts - name: Download artifacts
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with: with:
name: next-build name: next-build
- name: Install Docker CLI
run: |
apt-get update
apt-get install -y docker.io
- name: Deploy to Docker - name: Deploy to Docker
run: | run: |
docker build -t nextjs-app . docker build -t nextjs-app .