2 Commits

Author SHA1 Message Date
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
ee9cde1ed0 ci(deploy): fix yaml syntax and ensure docker prune runs before build
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 14s
Build & Deploy / 🏗️ Build (push) Failing after 16m44s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 QA (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
2026-03-05 14:06:30 +01:00
2 changed files with 8 additions and 1 deletions

View File

@@ -285,8 +285,15 @@ jobs:
perl -pi -e 's/link:\.\/_at-mintel\/packages\/pdf"/link:.\/_at-mintel\/packages\/pdf-library"/g' package.json
perl -pi -e 's/"\@mintel\/([^"]+)"\s*:\s*"[^"]+"/"\@mintel\/$1": "link:..\/\.\.\/_at-mintel\/packages\/$1"/g' apps/web/package.json
perl -pi -e 's/link:\.\.\/\.\.\/_at-mintel\/packages\/pdf"/link:..\/\.\.\/_at-mintel\/packages\/pdf-library"/g' apps/web/package.json
- name: 🧹 Free Disk Space
run: |
docker builder prune -af || true
docker image prune -af || true
- name: 🐳 Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: 🔐 Registry Login
run: |
echo "${{ secrets.REGISTRY_PASS }}" | docker login registry.infra.mintel.me -u "${{ secrets.REGISTRY_USER }}" --password-stdin

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