Compare commits

...

2 Commits

Author SHA1 Message Date
001ebe28ef fix(ci): use latest tag for nextjs and runtime base images
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 9s
Build & Deploy / 🧪 QA (push) Successful in 3m9s
Build & Deploy / 🏗️ Build (push) Failing after 41s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
CI - Lint, Typecheck & Test / quality-assurance (pull_request) Failing after 4m47s
2026-03-03 17:36:19 +01:00
a670c5fd65 fix(docker): bump base images to v1.8.21 to prevent build metadata registry failures 2026-03-03 17:25:48 +01:00

View File

@@ -1,5 +1,5 @@
# Stage 1: Builder
FROM git.infra.mintel.me/mmintel/nextjs:v1.8.20 AS base
FROM git.infra.mintel.me/mmintel/nextjs:latest AS base
WORKDIR /app
# Arguments for build-time configuration
@@ -52,7 +52,7 @@ ENV UV_THREADPOOL_SIZE=3
RUN pnpm build
# Stage 2: Runner
FROM git.infra.mintel.me/mmintel/runtime:v1.8.20 AS runner
FROM git.infra.mintel.me/mmintel/runtime:latest AS runner
WORKDIR /app
# Create nextjs user and group (standardized in runtime image but ensuring local ownership)