2 Commits

Author SHA1 Message Date
1bd516fbe4 fix: production container names in cms-sync and pin zod version for consistency
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 6s
Build & Deploy / 🏗️ Build (push) Successful in 10m16s
Build & Deploy / 🚀 Deploy (push) Successful in 14s
Build & Deploy / 🧪 QA (push) Successful in 51s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 2m52s
Build & Deploy / 🔔 Notify (push) Successful in 1s
2026-03-05 15:57:50 +01:00
4d0e3433a6 ci(deploy): remove unnecessary next.js build cache from docker image to save disk space
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 51s
Build & Deploy / 🏗️ Build (push) Successful in 13m0s
Build & Deploy / 🚀 Deploy (push) Successful in 13s
Build & Deploy / 🧪 QA (push) Successful in 51s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 2m21s
Build & Deploy / 🔔 Notify (push) Successful in 1s
2026-03-05 14:22:49 +01:00
3 changed files with 5 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ WORKDIR /app
COPY --from=builder /app/apps/web/public ./apps/web/public
COPY --from=builder /app/apps/web/.next/standalone ./
COPY --from=builder /app/apps/web/.next/static ./apps/web/.next/static
COPY --from=builder /app/apps/web/.next/cache ./apps/web/.next/cache
# Start from the app directory to ensure references solve correctly
WORKDIR /app/apps/web

View File

@@ -89,14 +89,14 @@ resolve_target() {
prod|production)
REMOTE_PROJECT="mintel-me-production"
REMOTE_DB_CONTAINER="mintel-me-production-postgres-db-1"
REMOTE_APP_CONTAINER="mintel-me-production-app-1"
REMOTE_APP_CONTAINER="mintel-me-production-mintel-me-app-1"
REMOTE_SITE_DIR="/home/deploy/sites/mintel.me"
;;
branch-*)
local SLUG=${TARGET#branch-}
REMOTE_PROJECT="mintel-me-branch-$SLUG"
REMOTE_DB_CONTAINER="${REMOTE_PROJECT}-postgres-db-1"
REMOTE_APP_CONTAINER="${REMOTE_PROJECT}-app-1"
REMOTE_APP_CONTAINER="${REMOTE_PROJECT}-mintel-me-app-1"
REMOTE_SITE_DIR="/home/deploy/sites/branch.mintel.me/$SLUG"
;;
*)

View File

@@ -52,7 +52,8 @@
"pnpm": {
"overrides": {
"@sentry/nextjs": "10.38.0",
"eslint": "10.0.0"
"eslint": "10.0.0",
"zod": "^3.23.8"
},
"onlyBuiltDependencies": [
"@parcel/watcher",