chore: add nextgen .dockerignore and update dev refresh script
Build and Push Docker Images / build (api) (push) Failing after 2m48s Details
Build and Push Docker Images / build (web) (push) Failing after 1m0s Details
Build and Push Docker Images / build (worker) (push) Failing after 31s Details
Build and Push Docker Images / build (nextgen) (push) Failing after 19m58s Details
Build and Push Docker Images / deploy (push) Has been cancelled Details

This commit is contained in:
fchinembiri 2026-07-03 18:58:33 +02:00
parent 92bc7dcace
commit ea005a2b29
2 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,10 @@
node_modules
dist
.env
*.db
*.db-shm
*.db-wal
*.sqlite
.mavis
outputs
.DS_Store

View File

@ -29,7 +29,7 @@ echo "Installing server dependencies..."
cd server && npm install --production && cd ..
echo "Building client..."
cd client && npm install && npm run build && cd ..
cd client && NODE_ENV=development npm install && npm run build && cd ..
echo "Restarting Kubernetes deployment..."
kubectl rollout restart deployment "$DEPLOYMENT" -n nextgen